Remove hardcoded paths from build file
Some checks failed
/ build (push) Failing after 43s

This commit is contained in:
sqozz 2024-05-17 12:34:55 +02:00
parent 3ae1d0e586
commit 46c5c4b8dd

View file

@ -8,6 +8,6 @@ jobs:
steps:
- run: apk add buildah wget
- run: buildah login --username ${{ secrets.username }} --password ${{ secrets.password }} git.geekify.de
- run: wget https://git.geekify.de/Containers/alpine-bash/raw/branch/main/Dockerfile
- run: wget ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/raw/branch/${GITHUB_REF_NAME}/Dockerfile
- run: buildah build --isolation=chroot | tee container_id
- run: buildah push $(tail -n 1 container_id) git.geekify.de/containers/alpine-bash:latest
- run: buildah push $(tail -n 1 container_id) git.geekify.de/${GITHUB_REPOSITORY}:latest