Release ArchLinuxARM for Orange Pi 5 series with vendor kernel nightly #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release ArchLinuxARM for Orange Pi 5 series with vendor kernel nightly | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2 * * *' # run at 2 AM UTC | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.5.2 | |
- name: Prepare deps | |
run: | | |
sudo apt update | |
sudo apt install libarchive-tools qemu-user-static mtools | |
- name: Restore cached sources | |
id: cache-restore-src | |
uses: actions/cache/restore@v3 | |
with: | |
path: src.tar | |
key: ${{ runner.os }}-src | |
restore-keys: ${{ runner.os }}-src | |
- name: Restore cached binaries | |
id: cache-restore-bin | |
uses: actions/cache/restore@v3 | |
with: | |
path: bin.tar | |
key: ${{ runner.os }}-bin | |
restore-keys: ${{ runner.os }}-bin | |
- name: Extract cached sources | |
run: | | |
for i in bin src; do | |
if [[ -f $i.tar ]]; then | |
tar -xf $i.tar | |
rm -f $i.tar | |
fi | |
done | |
- name: Cross build | |
run: ./cross_nobuild.sh | |
- name: Pack sources | |
run: | | |
tar -cf src.tar src | |
tar -cf bin.tar bin | |
- name: Save sources | |
uses: actions/cache/save@v3 | |
with: | |
path: src.tar | |
key: ${{ runner.os }}-src-${{ hashFiles('src.tar') }} | |
- name: Save binaries | |
uses: actions/cache/save@v3 | |
with: | |
path: bin.tar | |
key: ${{ runner.os }}-bin-${{ hashFiles('bin.tar') }} | |
- name: Release | |
uses: ncipollo/release-action@v1 | |
with: | |
name: Nightly | |
tag: nightly | |
artifacts: out/latest/* | |
allowUpdates: true | |
removeArtifacts: true |