Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: echo "::set-output name=name::three_em-${{ matrix.target }}-${{ github.ref == 'refs/heads/main' && 'canary' || 'dev' }}-$(git rev-parse --short HEAD)"

- name: Upload ${{ github.ref == 'refs/heads/main' && 'Canary' || 'Dev' }} Builds
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ steps.zip.outputs.name }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/napi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
run: ${{ matrix.build }}

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bindings-${{ matrix.target }}
path: ./js/napi/${{ env.APP_NAME }}.*.node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: Compress-Archive -CompressionLevel Optimal -Force -Path ${{ steps.binary.outputs.path }}, README.md, LICENSE -DestinationPath three_em-${{ matrix.target }}.zip

- name: Upload Release Builds
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release
path: three_em-${{ matrix.target }}.zip
Expand Down