-
Notifications
You must be signed in to change notification settings - Fork 270
36 lines (36 loc) · 1.03 KB
/
on_release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Generate Semantic Release
on:
workflow_dispatch:
push:
branches:
<<<<<<< HEAD
=======
- version-14
>>>>>>> 7108dfb (chore: update semantic-release workflow config)
- version-15
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Entire Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup dependencies
run: |
npm install @semantic-release/git @semantic-release/exec --no-save
- name: Create Release
env:
GH_TOKEN: ${{ secrets.EARTHIANS_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.EARTHIANS_BOT_TOKEN }}
GIT_AUTHOR_NAME: "earthians PR Bot"
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "earthians PR Bot"
GIT_COMMITTER_EMAIL: "[email protected]"
run: npx semantic-release