Skip to content

Commit

Permalink
Fix cdn path
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonMrBonnie committed Feb 27, 2022
1 parent 7215ae9 commit 5dc0ed6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: bytecode-module-windows-dll
path: dist-windows
path: dist-windows/modules

- name: Download windows module pdb
uses: actions/download-artifact@v2
Expand All @@ -81,7 +81,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: bytecode-module-linux-so
path: dist-linux
path: dist-linux/modules

- name: Extract version
id: version
Expand All @@ -106,7 +106,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist-windows/js-bytecode-module.dll
asset_path: ./dist-windows/modules/js-bytecode-module.dll
asset_name: js-bytecode-module.dll
asset_content_type: application/octet-stream

Expand All @@ -126,7 +126,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist-linux/libjs-bytecode-module.so
asset_path: ./dist-linux/modules/libjs-bytecode-module.so
asset_name: libjs-bytecode-module.so
asset_content_type: application/octet-stream

Expand Down

0 comments on commit 5dc0ed6

Please sign in to comment.