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 a9525ce commit 0c7c9cfCopy full SHA for 0c7c9cf
.github/workflows/deploy.yml
@@ -15,14 +15,14 @@ jobs:
15
id: check
16
run: |
17
if [ "${{ github.repository }}" = "jazzsequence/profile.github.io" ]; then
18
- echo "should_deploy=false" >> $GITHUB_ENV
+ echo "should_deploy=false" >> $GITHUB_OUTPUT
19
echo "Actions running on parent repository. Deploy to GitHub pages will be skipped."
20
else
21
- echo "should_deploy=true" >> $GITHUB_ENV
+ echo "should_deploy=true" >> $GITHUB_OUTPUT
22
echo "Actions running on forked repository. Deploying to GitHub is enabled."
23
fi
24
env:
25
- GITHUB_OUTPUT: $GITHUB_ENV
+ GITHUB_OUTPUT: $GITHUB_OUTPUT
26
deploy:
27
runs-on: ubuntu-latest
28
if: needs.precheck.outputs.should_deploy == 'true'
0 commit comments