-
Notifications
You must be signed in to change notification settings - Fork 639
72 lines (60 loc) · 2.28 KB
/
release-preview.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
name: Preview release template
on:
workflow_dispatch:
jobs:
variables:
runs-on: ubuntu-latest
outputs:
build_date: ${{ steps.result.outputs.build_date }}
build_tag: ${{ steps.result.outputs.build_tag }}
last_rev: ${{ steps.result.outputs.last_rev }}
last_tag: ${{ steps.result.outputs.last_tag }}
steps:
- name: Prepare version variables
id: result
shell: bash
run: |
remote_last_tag() {
git ls-remote --tags --sort='version:refname' https://github.com/xoseperez/espurna.git 'github*' |\
cut -d'/' -f3 |\
grep -o -E '^github[0-9]{6}$' |\
sort -r |\
head -1
}
remote_revision() {
git ls-remote --exit-code --heads https://github.com/xoseperez/espurna.git refs/heads/$1 | cut -d$'\t' -f1
}
date=$(date +'%y%m%d')
echo "build_date=${date}" >> "$GITHUB_OUTPUT"
tag="github${date}"
echo "build_tag=${tag}" >> "$GITHUB_OUTPUT"
dev=$(remote_revision dev)
echo "last_rev=${dev}" >> "$GITHUB_OUTPUT"
last=$(remote_last_tag)
echo "last_tag=${last}" >> "$GITHUB_OUTPUT"
release:
needs: variables
runs-on: ubuntu-latest
steps:
- name: Fetch release template
run: |
curl \
-H "Authentication: ${{ secrets.GITUB_TOKEN }}" \
-H "Accept: application/vnd.github.VERSION.raw" \
-o release_template.md \
https://api.github.com/repos/xoseperez/espurna/contents/.github/release_template.md
- name: Render release template
run: |
echo "build_date=" ${{ needs.variables.outputs.build_date }}
echo "build_tag=" ${{ needs.variables.outputs.build_tag }}
echo "last_rev=" ${{ needs.variables.outputs.last_rev }}
echo "last_tag=" ${{ needs.variables.outputs.last_tag }}
sed \
-i \
-e 's/\$\$BUILD_TAG\$\$/'${{ needs.variables.outputs.build_tag }}'/g' \
-e 's/\$\$LAST_TAG\$\$/'${{ needs.variables.outputs.last_tag }}'/g' \
release_template.md
- uses: actions/upload-artifact@v4
with:
name: release_template.md
path: release_template.md