-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 841 Bytes
/
release.yml
File metadata and controls
40 lines (35 loc) · 841 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
38
39
40
name: Release
on:
pull_request:
types: [opened, synchronize, reopened]
# on:
# push:
# branches:
# - main
# - master
# tags:
# - 'v*'
# paths-ignore:
# - '**.md'
concurrency:
group: release-${{ github.workflow }}
cancel-in-progress: false
permissions:
contents: write
packages: write
jobs:
ci:
name: CI
uses: ./.github/workflows/build.yaml
promote:
name: CI
needs: ci
uses: getdevopspro/github-actions/.github/workflows/promote.yml@v6.0.2
secrets:
registry-password: ${{ secrets.GITHUB_TOKEN }}
with:
version-package: package.json
git-add-files: package.json
git-user-name: getdevopspro-cibot
git-user-email: 203600057+getdevopspro-cibot@users.noreply.github.com
image-digests: ${{ needs.ci.outputs.image-digests }}