feat: base repo, dependabot config, CI workflows #2
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: | |
- main | |
pull_request: | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
build: | |
if: github.repository_owner == 'Alwatr' | |
name: Build & Publish Containers | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: alpine | |
version: | |
short: 3 | |
full: 3.17 | |
permissions: | |
contents: read | |
packages: write | |
# This is used to complete the identity challenge | |
# with sigstore/fulcio when running outside of PRs. | |
id-token: write | |
steps: | |
- name: ⤵️ Checkout repository | |
uses: actions/[email protected] | |
- name: ❔ Check Container files changed | |
id: file_change | |
uses: dorny/[email protected] | |
with: | |
filters: | | |
container_folder: | |
${{ matrix.name }}/* | |
- name: 🏗 Extract Docker metadata | |
if: ${{ steps.file_change.outputs.container_folder == 'true' }} | |
id: meta | |
uses: docker/[email protected] | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
images: | | |
name=${{env.REGISTRY}}/${{github.repository_owner}}/${{matrix.name}},enable=true | |
tags: | | |
type=raw,value=${{matrix.version.short}} | |
type=raw,value=${{matrix.version.full}} | |
- name: 🏗 Install cosign | |
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder == 'true' }} | |
uses: sigstore/[email protected] | |
- name: 🏗 Setup Docker Buildx | |
uses: docker/[email protected] | |
# - name: 🏗 Cache Docker Layers | |
# uses: actions/cache@v3 | |
# with: | |
# path: /tmp/.buildx-cache | |
# key: image-${{ matrix.name }}-version-${{ matrix.version.full }}-buildx-${{ hashFiles(format('{0}/Container_folder', matrix.path)) }} | |
- name: 🏗 Log into registry ${{env.REGISTRY}} | |
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder == 'true' }} | |
uses: docker/[email protected] | |
with: | |
registry: ${{env.REGISTRY}} | |
username: ${{github.repository_owner}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: 🚀 Build and push container image | |
if: ${{ steps.file_change.outputs.container_folder == 'true' }} | |
id: build-and-push | |
uses: docker/[email protected] | |
with: | |
context: ${{matrix.name}} | |
push: ${{github.event_name != 'pull_request'}} | |
tags: ${{steps.meta.outputs.tags}} | |
labels: ${{steps.meta.outputs.labels}} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
# cache-from: type=local,src=/tmp/.buildx-cache | |
# cache-to: type=local,dest=/tmp/.buildx-cache | |
- name: 🏗 Sign the published container image | |
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder == 'true' }} | |
env: | |
COSIGN_EXPERIMENTAL: 'true' | |
run: echo "${{steps.meta.outputs.tags}}" | xargs -I {} cosign sign --yes {}@${{steps.build-and-push.outputs.digest}} |