-
Notifications
You must be signed in to change notification settings - Fork 0
147 lines (125 loc) · 4.93 KB
/
zxcron-automatic-releases.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
##
# Copyright (C) 2024 Hedera Hashgraph, LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
name: "ZXCron: Automatic Releases"
on:
schedule:
- cron: "0 15 * * *"
defaults:
run:
shell: bash
permissions:
id-token: write
contents: read
actions: write
jobs:
versions:
name: Upstream Versions
uses: ./.github/workflows/zxc-retrieve-upstream-versions.yaml
safety-checks:
name: Safety Checks
runs-on: ubuntu-22.04
needs:
- versions
outputs:
legacy-release-needed: ${{ steps.legacy-release.outputs.needed }}
scaleset-release-needed: ${{ steps.scaleset-release.outputs.needed }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install GH CLI
uses: sersoft-gmbh/setup-gh-cli-action@2d02c06e284b7d55e954d6d6406e7a886f45a818 # v2.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Authorize GH CLI
run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
- name: Check for Existing Legacy Releases
id: legacy-release
run: |
NEEDED="true"
if gh release view legacy-v${{ needs.versions.outputs.runner }} --json id >/dev/null 2>&1; then
echo "::info title=Release Version::Release legacy-v${{ needs.versions.outputs.runner }} already exists and may not be redeployed."
NEEDED="false"
fi
echo "needed=${NEEDED}" >> "${GITHUB_OUTPUT}"
- name: Check for Existing ScaleSet Releases
id: scaleset-release
run: |
NEEDED="true"
if gh release view scaleset-v${{ needs.versions.outputs.runner }} --json id >/dev/null 2>&1; then
echo "::info title=Release Version::Release scaleset-v${{ needs.versions.outputs.runner }} already exists and may not be redeployed."
NEEDED="false"
fi
echo "needed=${NEEDED}" >> "${GITHUB_OUTPUT}"
legacy-release:
name: Legacy Release
runs-on: ubuntu-22.04
needs:
- versions
- safety-checks
if: ${{ needs.safety-checks.outputs.legacy-release-needed == 'true' }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install GH CLI
uses: sersoft-gmbh/setup-gh-cli-action@2d02c06e284b7d55e954d6d6406e7a886f45a818 # v2.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Authorize GH CLI
run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
- name: Launch Legacy Release Workflow
run: |
gh workflow run "flow-release-legacy-images.yaml" \
-r main \
-f "runner-version=${{ needs.versions.outputs.runner }}" \
-f "runner-container-hooks-version=${{ needs.versions.outputs.hooks }}" \
-f "build-default-image=true" \
-f "build-dind-image=true" \
-f "dry-run-enabled=false"
scaleset-release:
name: ScaleSet Release
runs-on: ubuntu-22.04
needs:
- versions
- safety-checks
if: ${{ needs.safety-checks.outputs.scaleset-release-needed == 'true' }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install GH CLI
uses: sersoft-gmbh/setup-gh-cli-action@2d02c06e284b7d55e954d6d6406e7a886f45a818 # v2.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Authorize GH CLI
run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
- name: Launch ScaleSet Release Workflow
run: |
gh workflow run "flow-release-scaleset-images.yaml" \
-r main \
-f "runner-version=${{ needs.versions.outputs.runner }}" \
-f "runner-container-hooks-version=${{ needs.versions.outputs.hooks }}" \
-f "dry-run-enabled=false"