Skip to content

Commit

Permalink
Merge pull request #171 from valory-xyz/mohan/update-is-staging-check
Browse files Browse the repository at this point in the history
feat: Update IS_STAGING env condition
  • Loading branch information
mohandast52 authored Jun 5, 2024
2 parents c1232c6 + 9b9c573 commit 0611257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
env:
NODE_ENV: production
DEV_RPC: https://rpc-gate.autonolas.tech/gnosis-rpc/
IS_STAGING: ${{ contains(github.ref, 'staging') }}
IS_STAGING: ${{ github.ref != 'refs/heads/main' && 'true' || 'false' }}
FORK_URL: https://rpc-gate.autonolas.tech/gnosis-rpc/
- run: rm -rf /dist
- name: "Build, notarize, publish"
Expand Down

0 comments on commit 0611257

Please sign in to comment.