Skip to content

Commit

Permalink
[ci] Fix deploy (#594)
Browse files Browse the repository at this point in the history
* [ci] Fix deploy

* push image would be also nice
  • Loading branch information
alvicsam authored Oct 29, 2024
1 parent b16ad2e commit d4a557c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/publish-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

#to use reusable workflow
permissions:
id-token: write
contents: read

env:
IMAGE_NAME: parity/substrate-telemetry
APP: "substrate-telemetry"
Expand Down Expand Up @@ -59,7 +64,7 @@ jobs:
with:
context: backend
file: ./backend/Dockerfile
push: false
push: true
tags: |
${{ env.IMAGE_NAME }}-backend:${{ env.VERSION }}
Expand All @@ -85,7 +90,7 @@ jobs:
with:
context: frontend
file: ./frontend/Dockerfile
push: false
push: true
tags: |
${{ env.IMAGE_NAME }}-frontend:${{ env.VERSION }}
Expand Down

0 comments on commit d4a557c

Please sign in to comment.