Publish Build Containers #1284
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: Publish Build Containers | |
on: | |
# We want to update this image regularly and when updating master | |
schedule: | |
- cron: '00 18 * * *' | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- 'docker/build/**' | |
permissions: {} | |
jobs: | |
publish_ghcr: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
packages: write # to push container | |
name: Publish To GitHub Container Registry | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ | |
{distro: "ubuntu", version: "20.04", nick: focal, installed_llvm_versions: "12 15 17"}, | |
{distro: "fedora", version: "38", nick: "f38", installed_llvm_versions: "this is not used"}, | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and push | |
uses: ./.github/actions/build-container | |
with: | |
os_distro: ${{ matrix.os.distro }} | |
os_version: ${{ matrix.os.version }} | |
os_nick: ${{ matrix.os.nick }} | |
llvm_versions: ${{ matrix.os.installed_llvm_versions }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
push: true |