Skip to content

Commit 4e7e3ed

Browse files
committed
ci: auto release
1 parent 092aa6e commit 4e7e3ed

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/publish.yml

+15
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ jobs:
4343
run: pnpm install
4444

4545
- name: bump version
46+
id: versioning
4647
run: |
4748
git config --global user.name "github-actions[bot]"
4849
git config --global user.email "github-actions[bot]@users.noreply.github.com"
4950
npx commit-and-tag-version
51+
echo "version=$(node -p -e "require('./package.json').version")" >> "$GITHUB_OUTPUT"
5052
5153
- name: Build
5254
run: NODE_ENV=production pnpm build
@@ -65,3 +67,16 @@ jobs:
6567
BRANCH: release
6668
FOLDER: dist
6769
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

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pnpm-lock.yaml
22
CHANGELOG.md
3+
.github/workflows

0 commit comments

Comments
 (0)