Switch to Environment Files

This commit is contained in:
nilaoda 2022-10-12 22:14:26 +08:00
parent ae54d9a94d
commit 13a26d08a4
1 changed files with 7 additions and 7 deletions

View File

@ -29,19 +29,19 @@ jobs:
run: | run: |
echo "::echo::on" echo "::echo::on"
gh release view --repo '${{ github.repository }}' '${{ github.event.inputs.tag }}' \ gh release view --repo '${{ github.repository }}' '${{ github.event.inputs.tag }}' \
&& echo "::set-output name=already_exists::true" \ && echo "already_exists=true" >> $GITHUB_ENV \
|| echo "::set-output name=already_exists::false" || echo "already_exists=false" >> $GITHUB_ENV
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repo - name: Checkout repo
if: steps.check_release.outputs.already_exists == 'false' if: env.already_exists == 'false'
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
ref: '${{ github.event.inputs.ref }}' ref: '${{ github.event.inputs.ref }}'
- name: Create release - name: Create release
if: steps.check_release.outputs.already_exists == 'false' if: env.already_exists == 'false'
run: > run: >
gh release create gh release create
'${{ github.event.inputs.tag }}' '${{ github.event.inputs.tag }}'
@ -158,7 +158,7 @@ jobs:
steps: steps:
- name: Get current date - name: Get current date
id: date id: date
run: echo "::set-output name=date::$(date +'%Y%m%d')" run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: GH version - name: GH version
run: gh --version run: gh --version
@ -167,10 +167,10 @@ jobs:
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
- name: Tar (linux, macOS) - name: Tar (linux, macOS)
run: for dir in *{osx,linux}*; do tar cvzf "${dir}_${{ steps.date.outputs.date }}.tar.gz" "$dir"; done run: for dir in *{osx,linux}*; do tar cvzf "${dir}_${{ env.date }}.tar.gz" "$dir"; done
- name: Zip (windows) - name: Zip (windows)
run: for dir in *win*; do zip -r "${dir}_${{ steps.date.outputs.date }}.zip" "$dir"; done run: for dir in *win*; do zip -r "${dir}_${{ env.date }}.zip" "$dir"; done
- name: Upload - name: Upload
run: | run: |