-
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.56 KB
/
release.yml
File metadata and controls
60 lines (51 loc) · 1.56 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
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC
contents: write # to create release tags (cycjimmy/semantic-release-action)
issues: write # to post release that resolves an issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: yarn
registry-url: https://registry.npmjs.org
## --- YARN CACHE --- ##
- name: Check for cached dependencies
continue-on-error: true
id: cache-dependencies
uses: actions/cache@v5
with:
path: |
.cache/yarn
node_modules
key: ubuntu-latest-node${{ matrix.node-version }}-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
shell: bash
run: yarn install --immutable
- name: Semantic release
uses: cycjimmy/semantic-release-action@v6.0.0
with:
semantic_version: 25
env:
GH_TOKEN: ${{ secrets.GITHUB_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