Skip to content

Commit

Permalink
solve
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Jun 4, 2024
1 parent b68db42 commit ae37947
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
- run: npm run build
#
- name: Zip files for release
run: zip -r compress-nodejs-$RELEASE_VERSION.zip dist/
run: zip -r compress-nodejs-${RELEASE_VERSION}.zip dist/

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./compress-nodejs-$RELEASE_VERSION.zip # Adjust according to your build output directory
asset_name: compress-nodejs-$RELEASE_VERSION.zip
asset_path: ./compress-nodejs-${RELEASE_VERSION}.zip # Adjust according to your build output directory
asset_name: compress-nodejs-${RELEASE_VERSION}.zip
asset_content_type: application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit ae37947

Please sign in to comment.