Skip to content

Commit

Permalink
fix(ci): use GITHUB_OUTPUT instead of deprecated set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
behnazh committed Oct 27, 2022
1 parent 2e1db07 commit 3a23b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
BUILD_EPOCH_PATH=$(find dist/ -type f -name "*-build-epoch.txt")
DIGEST=$(sha256sum $TARBALL_PATH $WHEEL_PATH $REQUIREMENTS_PATH $SBOM_PATH $HTML_DOCS_PATH $BUILD_EPOCH_PATH | base64 -w0)
echo "Digest of artifacts is $DIGEST."
echo "::set-output name=artifacts-sha256::$DIGEST"
echo "artifacts-sha256=$DIGEST" >> "$GITHUB_OUTPUT"
# For now only generate artifacts for the specified OS and Python version in env variables.
# Currently reusable workflows do not support setting strategy property from the caller workflow.
Expand Down

0 comments on commit 3a23b26

Please sign in to comment.