-
Notifications
You must be signed in to change notification settings - Fork 0
279 lines (276 loc) · 6.74 KB
/
example.yaml
File metadata and controls
279 lines (276 loc) · 6.74 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
name: Example
# Only one workflow can run at a time
# If there is newer workflow in progress, cancel older ones
concurrency:
group: example
cancel-in-progress: true
# Put 'on' in quotes to avoid YAML parsing error
"on":
# Enable manual triggering
workflow_dispatch: {}
# Run on commits to main branch
push:
branches:
- main
# Run only on changes to relevant files
paths:
- .github/workflows/example.yaml
- src/**
- copier.yaml
- flake.lock
- "*.nix"
- Taskfile.dist.yaml
jobs:
build:
name: Build template
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-24.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 10
env:
NIX_CACHE_DIR: /home/runner/.nixcache/
permissions:
# Needed to checkout code
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
- name: Setup Nix cache
uses: actions/cache@v4.3.0
id: cache-nix
with:
path: ${{ env.NIX_CACHE_DIR }}
key: example-nix
- name: Install Nix
uses: cachix/install-nix-action@v31.8.4
with:
github_access_token: ${{ github.token }}
install_url: https://releases.nixos.org/nix/nix-2.28.5/install
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Import Nix store cache
if: steps.cache-nix.outputs.cache-hit == 'true'
run: >-
nix-store
--import
< ${{ env.NIX_CACHE_DIR }}/archive.nar
- name: Build template files
run: >-
nix
develop
./#template
--command
--
task
shallow-build
--
--data
'accountname=quickplates'
--data
'appname=next-example'
--data
'reponame=next-example'
--data
'description=Next.js app example ⚫'
# Create archive to retain file permissions
- name: Create archive
run: >-
tar
--directory
build/
--create
--verbose
--file
archive.tar
./
- name: Upload artifact
uses: actions/upload-artifact@v5.0.0
with:
include-hidden-files: true
name: build
path: archive.tar
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Export Nix store cache
if: "!cancelled()"
run: >-
mkdir
--parents
${{ env.NIX_CACHE_DIR }}
&&
nix-store
--export $(find /nix/store/ -maxdepth 1 -name '*-*')
> ${{ env.NIX_CACHE_DIR }}/archive.nar
push:
name: Push changes
# Run only if build job succeeded
needs: build
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-24.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 10
steps:
- name: Download artifact
uses: actions/download-artifact@v6.0.0
with:
name: build
- name: Extract archive
run: >-
mkdir
--parents
build/
&&
tar
--directory
build/
--extract
--verbose
--file
archive.tar
- name: Checkout example repository
uses: actions/checkout@v5.0.0
with:
repository: quickplates/next-example
token: ${{ secrets.EXAMPLES_ACCESS_TOKEN }}
# Needed to reset to first commit
fetch-depth: 0
path: example/
# Configure git to use GitHub Actions bot as committer
- name: Configure git
working-directory: example/
run: >-
git
config
user.name
"github-actions[bot]"
&&
git
config
user.email
"41898282+github-actions[bot]@users.noreply.github.com"
- name: Reset example repository to first commit
working-directory: example/
run: >-
git
reset
--hard
"$(git rev-list --max-parents=0 HEAD)"
- name: Push changes
working-directory: example/
run: >-
git
push
--force
origin
HEAD
- name: Create new branch
working-directory: example/
run: >-
git
checkout
-b
build
- name: Copy build output
run: >-
cp
--recursive
build/.
example/
- name: Add changes
working-directory: example/
run: >-
git
add
./
- name: Commit changes
working-directory: example/
run: >-
git
commit
--message
'Added template files'
- name: Push changes
working-directory: example/
run: >-
git
push
--force
origin
HEAD
- name: Create pull request
working-directory: example/
env:
GITHUB_TOKEN: ${{ secrets.EXAMPLES_ACCESS_TOKEN }}
run: >-
gh
pr
create
--title
'Added template files'
--body
'Created automatically by GitHub Actions workflow from
[`${{ github.repository }}`](
${{ github.server_url }}/${{ github.repository }}
).'
--base
main
--assignee
'@me'
--fill
--label
'feature'
- name: Delete all releases and tags
working-directory: example/
env:
GITHUB_TOKEN: ${{ secrets.EXAMPLES_ACCESS_TOKEN }}
run: >-
gh
release
list
|
awk
--field-separator
'\t'
'{print $3}'
|
while
read
-r
tag
;
do
gh
release
delete
"$tag"
--yes
--cleanup-tag
;
done
- name: Merge pull request
working-directory: example/
env:
GITHUB_TOKEN: ${{ secrets.EXAMPLES_ACCESS_TOKEN }}
run: >-
gh
pr
merge
--auto
--delete-branch
--squash
- name: Fetch changes from origin
working-directory: example/
run: >-
git
fetch
--prune
--prune-tags
origin
- name: Create release
working-directory: example/
env:
GITHUB_TOKEN: ${{ secrets.EXAMPLES_ACCESS_TOKEN }}
run: >-
gh
release
create
0.1.0
--generate-notes