-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 834 Bytes
/
release.yml
File metadata and controls
37 lines (32 loc) · 834 Bytes
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
name: Release
on:
push:
branches:
- main
- master
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
permissions:
contents: write
packages: write
jobs:
build:
name: Job
uses: ./.github/workflows/build.yml
promote:
name: Job
needs: build
uses: getdevopspro/github-actions/.github/workflows/promote.yml@v6.3.2
secrets:
# To bypass ruleset enforcing checks
checkout-token: ${{ secrets.BOT_REPO_TOKEN }}
with:
version-package: package.json
version-package-lock: package-lock.json
git-add-files: package.json package-lock.json
git-user-name: getdevopspro-cibot
git-user-email: 203600057+getdevopspro-cibot@users.noreply.github.com
image-digests: ${{ needs.build.outputs.image-digests }}