This commit is contained in:
parent
92155092a5
commit
59409ff5b8
1 changed files with 20 additions and 0 deletions
20
.forgejo/workflows/ci.yml
Normal file
20
.forgejo/workflows/ci.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
env:
|
||||
CONTAINER_ADDRESS: host.containers.internal:5000
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: apt install jq podman -y
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build image
|
||||
run: ./build.sh
|
||||
- name: Authenticate with registry
|
||||
run: podman login -u srv_container-registry -p ${{ secrets.REGISTRY_TOKEN }} ${{ env.CONTAINER_ADDRESS }}
|
||||
- name: Push image
|
||||
run: podman push container-registry:0 ${{ env.CONTAINER_ADDRESS }}
|
Loading…
Reference in a new issue