1
0
Fork 0
ostree-native-containers/.forgejo/workflows/build-image.yaml
ver4a 266ae1941b
All checks were successful
/ build-image (push) Successful in 5m10s
Fix typo in build
Fixes typo introduced in 622664ece1
2024-11-06 09:49:31 +01:00

10 lines
433 B
YAML

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 --pull=newer --squash-all -t docker://${{ vars.REGISTRY_DOMAIN }}/${{ vars.MAIN_IMAGE }}:40
- run: podman image prune -f