This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
Repo #19
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: Repo | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
schedule: | |
- cron: '0 15 * * 1' | |
jobs: | |
repo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Build the repo | |
run: ./build ostreeRepo-amd64 ostreeRepo-arm64 | |
- name: Upload amd64 repo | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ostree-amd64-trixie-repo | |
path: .build/ostreeRepo-amd64-trixie-*.ostreeRepo.tar.gz | |
- name: Upload arm64 repo | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ostree-arm64-trixie-repo | |
path: .build/ostreeRepo-arm64-trixie-*.ostreeRepo.tar.gz |