We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a0e6e commit ab423d2Copy full SHA for ab423d2
.github/workflows/node.js.yml
@@ -30,14 +30,9 @@ jobs:
30
- run: npm install
31
- run: npm test
32
- run: npx tsc
33
- - name: Create Release
34
- id: create_release
35
- uses: comnoco/create-release@v2
36
- env:
37
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
+ - name: Upload build artifacts
+ uses: actions/upload-artifact@v4
38
with:
39
- tag_name: ${{ github.ref }}
40
- release_name: Release ${{ github.ref }}
41
- draft: false
42
- prerelease: false
+ name: build-output
+ path: dist/**
43
0 commit comments