Skip to content

Commit

Permalink
ci: add tag to docker images without github.actor
Browse files Browse the repository at this point in the history
  • Loading branch information
mickamy committed Jan 4, 2024
1 parent 42c11ec commit 20450b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ jobs:
file: ./docker/app/base/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ishocon2-app-base:latest
tags: ${{ github.actor }}/ishocon2-app-base:latest,ishocon2-app-base:latest
- uses: docker/build-push-action@v5.1.0
with:
context: .
file: ./docker/benchmarker/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ishocon2-app-bench:latest
tags: ${{ github.actor }}/ishocon2-app-bench:latest,ishocon2-app-bench:latest
- uses: docker/build-push-action@v5.1.0
with:
context: .
file: ./docker/app/${{ env.ISHOCON_APP_LANG }}/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ishocon2-app-${{ env.ISHOCON_APP_LANG }}:latest
tags: ${{ github.actor }}/ishocon2-app-${{ env.ISHOCON_APP_LANG }}:latest,ishocon2-app-${{ env.ISHOCON_APP_LANG }}:latest
- run: make build
timeout-minutes: 5
- run: make up bench-with-db-init
Expand Down

0 comments on commit 20450b2

Please sign in to comment.