chore(deps): bump the github-actions group with 2 updates #7
Workflow file for this run
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build & Publish Containers | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- next | |
tags: | |
- v* | |
pull_request: | |
env: | |
REGISTRY: ghcr.io | |
USER: alwatr | |
jobs: | |
build: | |
if: github.repository_owner == 'Alwatr' | |
name: Build & Publish Containers | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
max-parallel: 1 | |
matrix: | |
include: | |
- path: nginx-core | |
- path: nginx-pwa | |
- path: nginx-ws | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: ⤵️ Checkout repository | |
uses: actions/checkout@v4.1.1 | |
- name: 🏗 Install cosign | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: sigstore/cosign-installer@v3.2.0 | |
- name: 🏗 Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3.0.0 | |
- name: 🏗 Cache Docker Layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: alwatr-${{ matrix.path }} | |
- name: 🏗 Log into registry ${{env.REGISTRY}} | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/login-action@v3.0.0 | |
with: | |
registry: ${{env.REGISTRY}} | |
username: ${{github.repository_owner}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: 🏗 Extract metadata | |
id: meta | |
uses: docker/metadata-action@v5.0.0 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
images: name=${{env.REGISTRY}}/${{env.USER}}/${{matrix.path}},enable=true | |
tags: | | |
type=semver,enable=true,pattern={{major}} | |
type=semver,enable=true,pattern={{major}}.{{minor}} | |
type=semver,enable=true,pattern={{version}} | |
type=ref,enable=true,event=branch | |
- name: 🚀 Build and push container image | |
id: build_and_push | |
uses: docker/build-push-action@v5.0.0 | |
with: | |
context: ./${{matrix.path}} | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{steps.meta.outputs.tags}} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache | |
build-args: | | |
BUILD_DATE=${{github.event.repository.updated_at}} | |
BUILD_REV=${{github.sha}} | |
- name: 🏗 Sign the image with GitHub OIDC Token | |
if: ${{ github.event_name != 'pull_request' }} | |
env: | |
COSIGN_EXPERIMENTAL: 'true' | |
run: echo "${{steps.meta.outputs.tags}}" | xargs -I {} cosign sign --yes {}@${{steps.build_and_push.outputs.digest}} |