This repository has been archived by the owner on May 8, 2024. It is now read-only.
Docker Image CI #126
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: Docker Image CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: 0 6 * * 1 | |
jobs: | |
codeql: | |
uses: ./.github/workflows/codeql.yml | |
playwright: | |
uses: ./.github/workflows/playwright.yml | |
eslint: | |
uses: ./.github/workflows/eslint.yml | |
build-image: | |
if: ${{ github.event_name != 'schedule' }}} | |
runs-on: ubuntu-latest | |
needs: [codeql, playwright, eslint] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
flavor: latest=true | |
images: ghcr.io/${{ github.repository }} | |
tags: | | |
type=sha | |
- name: Login to GitHub Container Registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Docker Image and push | |
uses: docker/build-push-action@v5 | |
with: | |
file: docker/Dockerfile.development | |
push: ${{ github.event_name == 'push' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
context: . |