-
-
Notifications
You must be signed in to change notification settings - Fork 4k
71 lines (67 loc) · 2.06 KB
/
bootstrap_archives.yml
File metadata and controls
71 lines (67 loc) · 2.06 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
name: Generate bootstrap archives (android-7)
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
permissions: {} # none
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
permissions:
contents: read # actions/upload-artifact doesn't need contents: write
runs-on: ubuntu-slim
strategy:
matrix:
arch:
- aarch64
- arm
- i686
- x86_64
if: github.repository == 'termux/termux-packages'
steps:
- name: Git clone
uses: actions/checkout@v6
- name: Create bootstrap archive
run: ./scripts/generate-bootstraps.sh --architectures ${{ matrix.arch }}
- name: Store artifacts
uses: actions/upload-artifact@v6
with:
name: bootstrap-archives-${{ matrix.arch }}-${{ github.sha }}
path: "*.zip"
publish:
permissions:
contents: write # for git push
needs: build
runs-on: ubuntu-slim
steps:
- name: Git clone
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Fetch bootstrap archives
uses: actions/download-artifact@v7
with:
merge-multiple: true
path: ./
- name: Create new tag
id: get_tag
run: |
new_tag="bootstrap-$(date "+%Y.%m.%d")"
existing_tag_revision=$(git tag | grep "$new_tag" | sort -r | head -n 1 | cut -d- -f3 | cut -dr -f2)
if [ -n "$existing_tag_revision" ]; then
tag_rev=$((existing_tag_revision + 1))
else
tag_rev=1
fi
new_tag="${new_tag}-r${tag_rev}+apt.android-7"
echo "tag_name=$new_tag" >> $GITHUB_OUTPUT
- name: Publish bootstrap zips to GitHub release
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release create ${{ steps.get_tag.outputs.tag_name }} --title "Bootstrap archives for Termux application (apt.android-7)"
for file in *.zip; do
gh release upload ${{ steps.get_tag.outputs.tag_name }} "$file"
done