add shell
Some checks failed
/ build (push) Failing after 1m4s

This commit is contained in:
Hornwitser 2025-05-16 17:51:24 +02:00
parent 65b095c9b3
commit 678e6c5c72

View file

@ -9,17 +9,21 @@ jobs:
steps: steps:
- -
name: Install buildah name: Install buildah
shell: sh
run: | run: |
apk add buildah apk add buildah
- -
name: Checkout name: Checkout
shell: sh
uses: actions/checkout@v4 uses: actions/checkout@v4
- -
name: Authenticate with registry name: Authenticate with registry
shell: sh
run: | run: |
echo "${{ secrets.REGISTRY_TOKEN }}" | buildah login ${{ env.REGISTRY }} --username "${{ secrets.REGISTRY_USERNAME }}" --password-stdin echo "${{ secrets.REGISTRY_TOKEN }}" | buildah login ${{ env.REGISTRY }} --username "${{ secrets.REGISTRY_USERNAME }}" --password-stdin
- -
name: Build and push name: Build and push
shell: sh
run: | run: |
id id
$GITHUB_WORKSPACE/builder.sh ${{ env.REGISTRY_IMAGE }} $GITHUB_WORKSPACE/builder.sh ${{ env.REGISTRY_IMAGE }}