Build Ostree Container Image #950
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: Build Ostree Container Image | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
on: | |
schedule: | |
- cron: '00 0,8,16 * * *' | |
push: | |
branches: [ '*' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:40 | |
options: --privileged | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build | |
env: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
image: ${{ github.repository }} | |
tag: ${{ github.ref_name }} | |
composefile: ${{ vars.COMPOSEFILE }} | |
run: | | |
dnf -y --enablerepo=updates-testing install rpm-ostree skopeo selinux-policy-targeted | |
skopeo login -u $username -p $password $registry | |
mkdir -p repo cache | |
ostree init --repo=repo --mode=archive | |
rpm-ostree compose image --initialize-mode=if-not-exists \ | |
--format registry --layer-repo repo --cachedir=cache --copy-retry-times=4 \ | |
$composefile \ | |
$registry/$image:$tag | |