2024-12-03 18:33:26 +00:00
|
|
|
name: Build docker image
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-publish:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build & Publish
|
|
|
|
uses: https://codeberg.org/umglurf/kaniko-action@main
|
|
|
|
with:
|
|
|
|
credentials: |
|
2024-12-03 18:35:24 +00:00
|
|
|
code.r3pek.org=${{ github.actor }}:${{ secrets.PUBLISH_TOKEN }}
|
2024-12-03 18:33:26 +00:00
|
|
|
destinations: |
|
|
|
|
code.r3pek.org/${{ github.repository }}:latest
|
|
|
|
push: true
|