Skip to content

Commit

Permalink
Fix release pipeline tag matching
Browse files Browse the repository at this point in the history
  • Loading branch information
dincho committed May 9, 2024
1 parent 4b6cc28 commit 095452e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
CONTEXT: ./server
DOCKERHUB_REPO: "aeternity/graffiti-server"
deploy-server-testnet:
if: startsWith(github.ref_name, 'server-')
if: startsWith(github.ref_name, 'graffiti-server-')
needs: [publish-server]
uses: aeternity/github-actions/.github/workflows/_deploy-gitops.yml@v2.1.0
secrets: inherit
Expand All @@ -42,7 +42,7 @@ jobs:
DEPLOY_APP: graffiti-server-testnet
DEPLOY_VERSION: ${{ github.ref_name }}
deploy-server-mainnet:
if: startsWith(github.ref_name, 'server-')
if: startsWith(github.ref_name, 'graffiti-server-')
needs: [publish-server]
uses: aeternity/github-actions/.github/workflows/_deploy-gitops.yml@v2.1.0
secrets: inherit
Expand Down

0 comments on commit 095452e

Please sign in to comment.