Skip to content

Commit bc09ebf

Browse files
committed
ci: fix release action
1 parent 56af8da commit bc09ebf

File tree

1 file changed

+2
-51
lines changed

1 file changed

+2
-51
lines changed

Diff for: .github/workflows/create-release.yml

+2-51
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,10 @@
1-
name: Create Release
1+
name: Create release
22

33
on:
44
push:
55
tags:
66
- "v*"
77

8-
# jobs:
9-
# build:
10-
# runs-on: ubuntu-latest
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
19-
# with:
20-
# node-version: 14.x
21-
22-
# - name: Set up lerna yarn cache
23-
# uses: actions/cache@v2
24-
# with:
25-
# path: |
26-
# node_modules
27-
# */*/node_modules
28-
# ~/.cache/yarn
29-
# ~/.cache/Cypress
30-
# key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
31-
32-
# - name: Install yarn dependencies
33-
# if: steps.cache.outputs.cache-hit != 'true'
34-
# run: yarn install --pure-lockfile
35-
36-
# - name: Build the extension
37-
# run: yarn run build && node release.js && yarn run test && yarn run zip
38-
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-
# with:
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:
52-
# files: |
53-
# dist/devtools-*
54-
558
jobs:
569
build:
5710
name: Create Release
@@ -64,10 +17,8 @@ jobs:
6417

6518
- name: Create Release for Tag
6619
id: release_tag
67-
uses: Akryum/release-tag@conventional
20+
uses: Akryum/release-tag@v4.0.7
6821
env:
6922
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7023
with:
7124
tag_name: ${{ github.ref }}
72-
preset: angular # Use conventional-changelog preset
73-

0 commit comments

Comments
 (0)