1
0
Fork 0

Add first image build workflow
All checks were successful
/ build-image (push) Successful in 5m48s

This commit is contained in:
ver4a 2024-11-05 23:18:35 +01:00
parent c0cb05d355
commit e828792344

View file

@ -0,0 +1,10 @@
on: [push]
jobs:
build-image:
runs-on: shell
steps:
- uses: actions/checkout@v4
- run: cd ${{ env.GITHUB_WORKSPACE }}
- run: podman login -u ${{ vars.REGISTRY_USERNAME }} -p ${{ secrets.REGISTRY_PASSWORD }} ${{ vars.REGISTRY_DOMAIN }}
- run: podman build . --no-cache -t docker://${{ vars.REGISTRY_DOMAIN }}/${{ vars.MAIN_IMAGE }}:40
- run: podman image prune -f