ci: fix OCI registry authentication for buildcache push #3
This file contains hidden or 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: Spack Buildcache | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 3 * * 0' # Weekly on Sunday at 3am UTC | |
| push: | |
| paths: | |
| - 'test/ci/spack.yaml' | |
| - '.github/workflows/buildcache.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| if: github.repository == 'FairRootGroup/FairMQ' | |
| name: gcc-${{ matrix.gcc }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| gcc: ['12', '13', '14', '15'] | |
| env: | |
| GITHUB_USER: ${{ github.actor }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-deps | |
| with: | |
| gcc: ${{ matrix.gcc }} | |
| fresh: true | |
| - name: Login to OCI registry | |
| shell: spack-bash {0} | |
| run: spack -e fairmq mirror set --push --oci-username ${{ github.actor }} --oci-password-variable GITHUB_TOKEN local-buildcache | |
| - name: Push to buildcache | |
| if: ${{ !cancelled() }} | |
| shell: spack-bash {0} | |
| run: spack buildcache push --unsigned --update-index local-buildcache |