Skip to content

Build RPMFusion image #341

Build RPMFusion image

Build RPMFusion image #341

Workflow file for this run

name: Build RPMFusion image
on:
schedule:
- cron: '30 23 * * *' # 11:30pm everyday
pull_request:
branches:
- main
paths:
- .github/workflows/*.yml
- Containerfile*
push:
branches:
- main
paths:
- .github/workflows/*.yml
- Containerfile*
workflow_dispatch:
env:
IMAGE_VARIANT: fusion
IMAGE_NAME: ${{ github.event.repository.name }}
REGISTRY_URL: ghcr.io
REGISTRY_USERNAME: ${{ github.repository_owner }}
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false
matrix:
major_version: [39, 40]
include:
- major_version: 39
is_latest: false
is_stable: false
- major_version: 40
is_latest: true
is_stable: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log into registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY_URL }}
username: ${{ env.REGISTRY_USERNAME }}
password: ${{ env.REGISTRY_PASSWORD }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY_URL }}/${{ env.REGISTRY_USERNAME }}/${{ env.IMAGE_NAME }}${{ env.IMAGE_VARIANT }}
flavor: |
latest=false
tags: |
type=semver,pattern={{version}}
type=sha,prefix=sha256-
type=raw,value=${{ matrix.major_version }},enable=${{ github.event_name != 'pull_request' && matrix.major_version != '' }}
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' && matrix.is_latest == true }}
type=raw,value=stable,enable=${{ github.event_name != 'pull_request' && matrix.is_stable == true }}
type=ref,suffix=-${{ matrix.major_version }},event=pr,enable=${{ github.event_name == 'pull_request' }}
type=schedule,pattern={{date 'YYYYMMDD'}},enable=${{ github.event_name != 'pull_request' && matrix.is_stable == true }}
type=schedule,prefix=${{ matrix.major_version }}-,pattern={{date 'YYYYMMDD'}},enable=${{ github.event_name == 'schedule' }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build and push image
id: build-and-push
uses: docker/build-push-action@v5
env:
ACTIONS_RUNTIME_TOKEN: ''
with:
file: |
./Containerfile
build-args: |
FEDORA_VARIANT=${{ env.IMAGE_VARIANT }}
FEDORA_MAJOR_VERSION=${{ matrix.major_version }}
platforms: linux/amd64,linux/arm64
provenance: false
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Install Cosign
uses: sigstore/[email protected]
- name: Sign container image
run: |
cosign sign -y --key env://COSIGN_PRIVATE_KEY ${{ env.REGISTRY_URL }}/${{ env.REGISTRY_USERNAME }}/${{ env.IMAGE_NAME }}${{ env.IMAGE_VARIANT }}@${TAGS}
env:
TAGS: ${{ steps.build-and-push.outputs.digest }}
COSIGN_PRIVATE_KEY: ${{ secrets.COSIGN_KEY }}
COSIGN_EXPERIMENTAL: false
- name: Echo outputs
run: |
echo "${{ toJSON(steps.build-and-push.outputs) }}"