Initial try on an action to build RPM packages
Some checks failed
Build docker image / build-and-publish (push) Failing after 37s
Some checks failed
Build docker image / build-and-publish (push) Failing after 37s
This commit is contained in:
parent
ff083951fd
commit
aa810b33e8
4 changed files with 96 additions and 0 deletions
22
.forgejo/workflows/build.yml
Normal file
22
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Build docker image
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build-and-publish:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
env:
|
||||
DOCKER_HOST: ${{ vars.DOCKER_HOST }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build & Publish
|
||||
uses: https://codeberg.org/umglurf/kaniko-action@main
|
||||
with:
|
||||
credentials: |
|
||||
code.r3pek.org=${{ github.repository_owner }}:${{ secrets.PUBLISH_TOKEN }}
|
||||
destinations: |
|
||||
code.r3pek.org/${{ github.repository }}:latest
|
||||
push: true
|
Loading…
Add table
Add a link
Reference in a new issue