Skip to content

Commit

Permalink
Update molecular-build.yml
Browse files Browse the repository at this point in the history
replace set-output directives by using GITHUB_OUTPUT environment files, because set-output is about to be deprecated
  • Loading branch information
scorpion81 authored Jan 11, 2025
1 parent d01a76a commit 0efcd6c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/molecular-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python make_release.py)"
# run: echo "::set-output name=version::$(python make_release.py)"
run: echo "version=$(python make_release.py)" >> $GITHUB_OUTPUT
- name: Upload windows zip
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -66,7 +67,8 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python make_release.py)"
#run: echo "::set-output name=version::$(python make_release.py)"
run: echo "version=$(python make_release.py)" >> $GITHUB_OUTPUT
- name: Upload linux zip
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -95,7 +97,8 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python make_release.py)"
#run: echo "::set-output name=version::$(python make_release.py)"
run: echo "version=$(python make_release.py)" >> $GITHUB_OUTPUT
- name: Upload mac zip
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 0efcd6c

Please sign in to comment.