Skip to content

Commit

Permalink
fix(CI): send vars to GITHUB_OUTPUT not ENV
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Dec 3, 2023
1 parent aaecd6a commit 7a5191d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ jobs:
echo "SKIP_CI=$SKIP_CI"
echo "SKIP_TESTS=$SKIP_TESTS"
echo "DEBUG=$DEBUG" >> $GITHUB_ENV
echo "MODE=$MODE" >> $GITHUB_ENV
echo "SKIP_CI=$SKIP_CI" >> $GITHUB_ENV
echo "SKIP_TESTS=$SKIP_TESTS" >> $GITHUB_ENV
echo "DEBUG=$DEBUG" >> $GITHUB_OUTPUT
echo "MODE=$MODE" >> $GITHUB_OUTPUT
echo "SKIP_CI=$SKIP_CI" >> $GITHUB_OUTPUT
echo "SKIP_TESTS=$SKIP_TESTS" >> $GITHUB_OUTPUT
test:
Expand Down

0 comments on commit 7a5191d

Please sign in to comment.