-
Notifications
You must be signed in to change notification settings - Fork 46
50 lines (42 loc) · 1.23 KB
/
cd.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
48
49
50
# Builds package and publishes it on npm.
# Triggered on pushes to develop, master and release branches
name: CD
on:
push:
branches:
- master
- develop
- release-*
jobs:
build:
runs-on: ubuntu-22.04
environment: upload
permissions:
id-token: write # Required by Akeyless
contents: write
packages: read
steps:
- name: Import Secrets
id: import-secrets
uses: LanceMcCarthy/akeyless-action@v3
with:
access-id: ${{ secrets.GH_AKEYLESS_ACCESS_ID }}
static-secrets: |
{
"/WebComponents/prod/tokens/GH_TOKEN": "GH_TOKEN",
"/WebComponents/prod/tokens/PROGRESS_NPM_REGISTRY_TOKEN": "NPM_TOKEN"
}
export-secrets-to-environment: false
- name: Check out branch
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all branches
- name: Install modules
run: npm ci --ignore-scripts
- name: Lint
run: npm run lint
- name: Publish release
run: npx semantic-release
env:
NPM_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }}
GH_TOKEN: ${{ steps.import-secrets.outputs.GH_TOKEN }}