-
Notifications
You must be signed in to change notification settings - Fork 36
47 lines (40 loc) · 1.14 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
name: Release
on:
workflow_call:
inputs:
environment:
description: "Release to environment"
default: next
required: false
type: string
jobs:
release:
name: Semver Release
runs-on: ubuntu-latest
concurrency: release
environment: ${{ inputs.environment }}
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ steps.generate_token.outputs.token }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Verify signatures for installed dependencies
run: npm audit signatures
- name: Semantic Release
uses: codfish/semantic-release-action@v2
id: semantic
env:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
GH_TOKEN: ${{ steps.generate_token.outputs.token }}