Skip to content

Commit

Permalink
Update: [Actions] set-output is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
glx22 committed Dec 3, 2022
1 parent f887155 commit 6a65b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
twine upload --username __token__ dist/*.whl dist/*.tar.gz
version=`python setup.py --version`
archive=`echo "nml-$version.tar.gz"`
echo "::set-output name=archive::$archive"
echo "archive=$archive" >> $GITHUB_OUTPUT
id: nml_source_archive

- name: Publish source tarball
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
$version = python setup.py --version
$archive = echo "nml-standalone-$version-win64.zip"
Compress-Archive -Path dist/nmlc.exe, LICENSE, README.md, docs/changelog.txt -DestinationPath $archive
echo "::set-output name=archive::$archive"
echo "archive=$archive" >> $GITHUB_OUTPUT
id: nml_archive

- name: Publish standalone executable
Expand Down

0 comments on commit 6a65b76

Please sign in to comment.