Skip to content

Commit

Permalink
stupid github action
Browse files Browse the repository at this point in the history
  • Loading branch information
xxyzz committed Nov 10, 2020
1 parent 8e7b2df commit adf8f12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Build plugin
run: zip -r worddumb-${{ github.ref }}.zip *
run: zip -r worddumb.zip *
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -25,12 +25,12 @@ jobs:
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./worddumb-${{ github.ref }}.zip
asset_name: worddumb-${{ github.ref }}.zip
asset_path: ./worddumb.zip
asset_name: worddumb.zip
asset_content_type: application/zip

0 comments on commit adf8f12

Please sign in to comment.