File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,12 @@ jobs:
43
43
run : pnpm install
44
44
45
45
- name : bump version
46
+ id : versioning
46
47
run : |
47
48
git config --global user.name "github-actions[bot]"
48
49
git config --global user.email "github-actions[bot]@users.noreply.github.com"
49
50
npx commit-and-tag-version
51
+ echo "version=$(node -p -e "require('./package.json').version")" >> "$GITHUB_OUTPUT"
50
52
51
53
- name : Build
52
54
run : NODE_ENV=production pnpm build
65
67
BRANCH : release
66
68
FOLDER : dist
67
69
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
70
+
71
+ - name : Prepare for Release
72
+ run : |
73
+ cd dist
74
+ zip -r ../release.zip .
75
+
76
+ - name : Release
77
+ uses : softprops/action-gh-release@v1
78
+ with :
79
+ tag_name : v${{ steps.versioning.outputs.version }}
80
+ files : |
81
+ dist/bundle.user.js
82
+ release.zip
Original file line number Diff line number Diff line change 1
1
pnpm-lock.yaml
2
2
CHANGELOG.md
3
+ .github /workflows
You can’t perform that action at this time.
0 commit comments