Update .gitea/workflows/dockerbuild.yml
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m0s
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m0s
This commit is contained in:
@@ -24,18 +24,18 @@ jobs:
|
||||
SHORT_HASH: ${{ github.sha }}
|
||||
run: |
|
||||
# Build the image with the commit hash tag
|
||||
sudo docker build --build-arg BUILD_IDENTIFIER=${SHORT_HASH:0:5} -t https://git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-${SHORT_HASH:0:5} .
|
||||
docker build --build-arg BUILD_IDENTIFIER=${SHORT_HASH:0:5} -t git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-${SHORT_HASH:0:5} .
|
||||
|
||||
# Tag the same image as "latest"
|
||||
sudo docker tag https://git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-${SHORT_HASH:0:5} https://git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-latest
|
||||
docker tag git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-${SHORT_HASH:0:5} git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-latest
|
||||
|
||||
- name: Push Docker Images
|
||||
env:
|
||||
BRANCH_NAME: ${{ github.ref_name }}
|
||||
SHORT_HASH: ${{ github.sha }}
|
||||
run: |
|
||||
docker push https://git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-${SHORT_HASH:0:5}
|
||||
docker push https://git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-latest
|
||||
docker push git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-${SHORT_HASH:0:5}
|
||||
docker push git.phyllo.me/devops/fedora-runner-image:${BRANCH_NAME}-latest
|
||||
|
||||
- name: Log out from registry
|
||||
if: always()
|
||||
|
||||
Reference in New Issue
Block a user