Skip to content

Commit

Permalink
update dist package name
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane committed Mar 1, 2020
1 parent 8b302ea commit 9525e98
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
os: [ubuntu-latest, macos-latest]
env:
PLATFORM: ${{ matrix.os }}
TAG: ${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -28,15 +27,15 @@ jobs:
cp ./README.md dist/
cp ./LICENSE dist/
cd dist
zip ../yarn-autocompletions_${{ github.ref }}_${{ matrix.os }}.zip ./*
tar -zcvf ../yarn-autocompletions_${{ github.ref }}_${{ matrix.os }}.tar.gz *
zip ../yarn-autocompletions_${{ matrix.os }}.zip ./*
tar -zcvf ../yarn-autocompletions_${{ matrix.os }}.tar.gz *
ls -l
cd ..
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
yarn-autocompletions_${{ github.ref }}_${{ matrix.os }}.zip
yarn-autocompletions_${{ github.ref }}_${{ matrix.os }}.tar.gz
yarn-autocompletions_${{ matrix.os }}.zip
yarn-autocompletions_${{ matrix.os }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9525e98

Please sign in to comment.