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 2d6fce0 commit 5eb8eebCopy full SHA for 5eb8eeb
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: 🚀 Semantic Release
3
on:
4
push:
5
branches:
6
- - main
+ - production
7
8
permissions:
9
contents: write
@@ -13,7 +13,6 @@ permissions:
13
jobs:
14
release:
15
runs-on: ubuntu-latest
16
-
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v4
@@ -25,6 +24,15 @@ jobs:
25
24
with:
26
node-version: 20
27
+ - name: Install semantic-release and plugins
28
+ run: |
29
+ npm install -g semantic-release \
30
+ @semantic-release/changelog \
31
+ @semantic-release/git \
32
+ @semantic-release/github \
33
+ @semantic-release/commit-analyzer \
34
+ @semantic-release/release-notes-generator
35
+
36
- name: Run Semantic Release
37
run: npx semantic-release
38
env:
0 commit comments