fix(workflows): Various fixes and changes #352
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: library/base:latest | |
on: | |
repository_dispatch: | |
types: [core_merge] | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # Everyday at 12AM | |
push: | |
branches: [main] | |
paths: | |
- 'library/base/**' | |
- '.github/workflows/library-base.yaml' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: [main] | |
paths: | |
- 'library/base/**' | |
- '.github/workflows/library-base.yaml' | |
# Automatically cancel in-progress actions on the same branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- plat: qemu | |
arch: x86_64 | |
- plat: fc | |
arch: x86_64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build base | |
uses: unikraft/kraftkit@staging | |
with: | |
loglevel: debug | |
workdir: library/base | |
runtimedir: /github/workspace/.kraftkit | |
plat: ${{ matrix.plat }} | |
arch: ${{ matrix.arch }} | |
push: false | |
output: oci://index.unikraft.io/unikraft.org/base:latest | |
- name: Archive OCI digests | |
uses: actions/upload-artifact@v4 | |
with: | |
name: oci-digests-${{ matrix.arch }}-${{ matrix.plat }} | |
path: ${{ github.workspace }}/.kraftkit/oci/digests | |
if-no-files-found: error | |
push: | |
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to OCI registry | |
uses: docker/login-action@v3 | |
with: | |
registry: index.unikraft.io | |
username: ${{ secrets.REG_USERNAME }} | |
password: ${{ secrets.REG_TOKEN }} | |
- name: Retrieve, merge and push OCI digests | |
uses: ./.github/actions/merge-oci-digests | |
with: | |
name: index.unikraft.io/unikraft.org/base:latest | |
push: true |