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 409a5a2 commit c285c26Copy full SHA for c285c26
.github/workflows/build.yaml
@@ -22,8 +22,17 @@ jobs:
22
- run: npm install
23
- run: npm run build
24
25
- - name: Upload artifacts
26
- uses: actions/upload-artifact@v4
+ - name: Create Release
+ id: create_release
27
+ uses: actions/create-release@v1
28
+ env:
29
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
with:
- name: production-files
- path: ./dist
31
+ tag_name: ${{ github.ref }}
32
+ release_name: Release ${{ github.ref }}
33
+
34
+ # - name: Upload artifacts
35
+ # uses: actions/upload-artifact@v4
36
+ # with:
37
+ # name: production-files
38
+ # path: ./dist
0 commit comments