Skip to content

Commit

Permalink
hmpf
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Jan 6, 2024
1 parent 1ffbf9d commit 58e1bf3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master_push.yml
Expand Up @@ -39,6 +39,6 @@ jobs:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/{{ github.repository }}:latest
tags: ghcr.io/${{ github.repository }}:latest
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 1 addition & 1 deletion .github/workflows/publish_tags.yml
Expand Up @@ -41,6 +41,6 @@ jobs:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/VROOM-Project/vroom-docker:${{ steps.tag.outputs.TAG }}"
tags: ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.TAG }}"
cache-from: type=gha
cache-to: type=gha,mode=max
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Expand Up @@ -22,9 +22,9 @@ jobs:

- name: Build Image on amd64
run: |
echo "Building image ghcr.io/{{ github.repository }}:latest"
docker build --tag ghcr.io/{{ github.repository }}:latest .
echo "Building image ghcr.io/${{ github.repository }}:latest"
docker build --tag ghcr.io/${{ github.repository }}:latest .
- name: Test tagged amd64 image
run : |
sudo /bin/bash -c "./tests/test.sh ghcr.io/{{ github.repository }}:latest"
sudo /bin/bash -c "./tests/test.sh ghcr.io/${{ github.repository }}:latest"

0 comments on commit 58e1bf3

Please sign in to comment.