chore(deps): bump the github-actions group with 5 updates #463
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 | |
pull_request: | |
release: | |
types: | |
- created | |
env: | |
USER: alwatr | |
jobs: | |
build: | |
if: github.repository_owner == 'Alwatr' | |
name: Build & Publish Containers | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: nitrobase-nginx | |
path: ./packages/nginx | |
context: ./packages/nginx | |
# - name: nitrobase-api | |
# path: ./packages/api | |
# context: . | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: ⤵️ Checkout repository | |
uses: actions/[email protected] | |
- name: ❔ Check Container files changed | |
id: file_change | |
if: ${{ github.event_name != 'release' && github.event_name != 'workflow_dispatch' }} | |
uses: dorny/[email protected] | |
with: | |
filters: | | |
container_folder: | |
./${{ matrix.context }}/** | |
- name: 🏗 Install cosign | |
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} | |
uses: sigstore/[email protected] | |
- name: 🏗 Setup Docker Buildx | |
if: ${{ steps.file_change.outputs.container_folder != 'false' }} | |
uses: docker/[email protected] | |
- name: 🏗 Cache Docker Layers | |
if: ${{ steps.file_change.outputs.container_folder != 'false' }} | |
uses: actions/[email protected] | |
with: | |
path: /tmp/.buildx-cache | |
key: container/${{ matrix.name }} | |
- name: 🏗 Log into docker hub registry | |
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} | |
uses: docker/[email protected] | |
with: | |
username: ${{env.USER}} | |
password: ${{secrets.DOCKER_HUB_TOKEN}} | |
- name: 🏗 Log into ghcr.io registry | |
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{env.USER}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: 🏗 Extract metadata | |
if: ${{ steps.file_change.outputs.container_folder != 'false' }} | |
id: meta | |
uses: docker/[email protected] | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
images: | | |
name=ghcr.io/${{env.USER}}/${{matrix.name}},enable=true | |
name=docker.io/${{env.USER}}/${{matrix.name}},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 | |
labels: | | |
org.opencontainers.image.title="alwatr/${{matrix.name}}" | |
org.opencontainers.image.vendor="Alwatr" | |
org.opencontainers.image.documentation="https://github.com/Alwatr/nitrobase" | |
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)" | |
- name: 🚀 Build and export to docekr | |
if: ${{ steps.file_change.outputs.container_folder != 'false' }} | |
uses: docker/[email protected] | |
with: | |
context: ./${{matrix.context}} | |
file: ${{matrix.path}}/Dockerfile | |
push: false | |
load: true | |
tags: ${{env.USER}}/${{matrix.name}}:test | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache | |
- name: 🧪 Nginx config test | |
if: ${{ steps.file_change.outputs.container_folder != 'false' && contains(matrix.name, 'nginx') }} | |
run: | | |
echo "Running tests for ${{matrix.name}}" | |
docker run --rm ${{env.USER}}/${{matrix.name}}:test /etc/nginx/entrypoint.sh nginx -t | |
# TODO: 🧪 Api test | |
- name: 🚀 Build and publish container image | |
if: ${{ steps.file_change.outputs.container_folder != 'false' }} | |
uses: docker/[email protected] | |
with: | |
context: ./${{matrix.context}} | |
file: ${{matrix.path}}/Dockerfile | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache |