1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-18 02:27:08 +00:00
termux-packages/.github/workflows/bootstrap_archives.yml

28 lines
586 B
YAML
Raw Normal View History

name: Generate bootstrap archives
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- aarch64
- arm
- i686
- x86_64
steps:
- name: Git clone
uses: actions/checkout@v2
- name: Create bootstrap archive
run: ./scripts/generate-bootstraps.sh --architectures ${{ matrix.arch }}
- name: Store artifacts
uses: actions/upload-artifact@v2
with:
name: bootstrap-archives
path: "*.zip"