-
Notifications
You must be signed in to change notification settings - Fork 29
106 lines (102 loc) · 3.09 KB
/
release-branch.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Test and Release
on:
pull_request:
types:
- opened
- reopened
- synchronize
workflow_dispatch:
jobs:
test:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Hub Login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PAT }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
context: https://github.com/docker/scout-demo-service.git#fix-all-cves
push: false
load: true
tags: docker/scout-demo-service:fix
- name: TEST quickview no image
uses: ./
with:
command: quickview
write-comment: false
- name: TEST quickview
uses: ./
with:
command: quickview
image: docker/scout-demo-service:main
write-comment: false
- name: TEST cves
uses: ./
with:
command: cves
image: docker/scout-demo-service:main
write-comment: false
- name: TEST compare images
uses: ./
with:
command: compare
image: registry://docker/scout-demo-service:main
to: local://docker/scout-demo-service:fix
exit-code: false
write-comment: false
release:
if: startsWith(github.head_ref, 'release/v')
permissions:
contents: write
outputs:
tag: ${{ steps.tagname.outputs.value }}
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Tag name
uses: mad9000/actions-find-and-replace-string@2
id: tagname
with:
source: ${{ github.head_ref }}
find: 'release/'
replace: ''
- name: Major version
uses: ashley-taylor/[email protected]
id: major
with:
value: ${{ steps.tagname.outputs.value }}
regex: "\\.\\d+\\.\\d+$"
replacement: ''
- name: Merge and Tag
run: |
git config --unset-all http.https://github.com/.extraheader
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "${GITHUB_ACTOR}"
git merge --ff-only origin/${{ github.head_ref }}
git tag ${{ steps.tagname.outputs.value }}
git push https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main --tags
git tag -f ${{ steps.major.outputs.value }}
git push https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main -f --tags
create_release:
needs:
- release
uses: ./.github/workflows/release.yml
permissions:
contents: write
with:
tag: ${{ needs.release.outputs.tag }}