-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (65 loc) · 1.81 KB
/
release.yaml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Release local scanner action
on:
push:
branches:
- 'main'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: write
packages: write
checks: write
id-token: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm ci
- name: eslint
run: npm run lint:check
build-action-docker-image:
needs: [ lint ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-image
name: Build and publish docker image
with:
registry: ${{ env.REGISTRY }}
image_name: ${{ env.IMAGE_NAME }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
verify-action:
runs-on: ubuntu-latest
needs: [ build-action-docker-image ]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- uses : ./
name: Run action against itself
with:
apiUrl: ${{ secrets.CONTRAST__API__URL }}
apiUserName: ${{ secrets.CONTRAST__API__USER_NAME }}
apiKey: ${{ secrets.CONTRAST__API__API_KEY }}
apiServiceKey: ${{ secrets.CONTRAST__API__SERVICE_KEY }}
apiOrgId: ${{ secrets.CONTRAST__API__ORGANIZATION }}
severity: medium
path: src
release:
runs-on: ubuntu-latest
needs: [ verify-action ]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Install modules
run: npm ci
- name: release
run: |
git config --global user.name 'Github'
git config --global user.email 'github@users.noreply.github.com'
npm run release