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 68cd612 commit 1fd84b7Copy full SHA for 1fd84b7
.github/workflows/tagged-release.yml
@@ -11,6 +11,8 @@ jobs:
11
steps:
12
- name: Checkout
13
uses: actions/checkout@v2
14
+ with:
15
+ fetch-depth: 0
16
17
- name: Set up Node.js
18
uses: actions/setup-node@v2
@@ -34,7 +36,16 @@ jobs:
34
36
- name: Build the extension
35
37
run: yarn run build && node release.js && yarn run test && yarn run zip
38
- - name: Release
39
+ - name: Create Release for Tag
40
+ id: release_tag
41
+ uses: Akryum/release-tag@conventional
42
+ env:
43
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
45
+ tag_name: ${{ github.ref }}
46
+ preset: angular
47
+
48
+ - name: Upload artifacts
49
uses: softprops/action-gh-release@v1
50
if: startsWith(github.ref, 'refs/tags/')
51
with:
0 commit comments