We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf1274 commit 1a24277Copy full SHA for 1a24277
.github/workflows/deploy.yml
@@ -57,8 +57,10 @@ jobs:
57
forge deploy -e staging
58
fi
59
60
- # Install Forge app dependencies
+ # Install or upgrade Forge app
61
# https://developer.atlassian.com/platform/forge/cli-reference/install/
62
- - name: Install Forge dependencies
+ - name: Install/Upgrade Forge app
63
if: github.event_name == 'pull_request'
64
- run: forge install -e staging -s gitauto.atlassian.net -p Jira --upgrade --confirm-scopes --non-interactive --verbose
+ run: |
65
+ forge install -e staging -s gitauto.atlassian.net -p Jira --confirm-scopes --non-interactive --verbose || \
66
+ forge install -e staging -s gitauto.atlassian.net -p Jira --upgrade --confirm-scopes --non-interactive --verbose
0 commit comments