-
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.52 KB
/
release.yml
File metadata and controls
60 lines (51 loc) · 1.52 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
defaults:
run:
shell: bash
jobs:
release:
name: Release
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Check out code
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Enable Corepack
run: corepack enable
- name: Use Node LTS version
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: yarn install --immutable
- name: Semantic release
id: semantic
uses: cycjimmy/semantic-release-action@v6
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_AUTHOR_NAME: Cassondra Roberts
GIT_AUTHOR_EMAIL: castastrophe@users.noreply.github.com
GIT_COMMITTER_NAME: Cassondra Roberts
GIT_COMMITTER_EMAIL: castastrophe@users.noreply.github.com
- name: Do something when a new release published
if: steps.semantic.outputs.new_release_published == 'true'
run: |
echo ${{ steps.semantic.outputs.new_release_version }}
echo ${{ steps.semantic.outputs.new_release_major_version }}
echo ${{ steps.semantic.outputs.new_release_minor_version }}
echo ${{ steps.semantic.outputs.new_release_patch_version }}