Version 6.3.0 #6
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: CI (PR) | |
on: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
inputs: | |
force_run: | |
description: 'Force workflow run' | |
required: true | |
type: choice | |
options: [yes, no] | |
permissions: | |
actions: read | |
contents: read | |
statuses: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
CI: | |
uses: ./.github/workflows/ci.yml | |
secrets: inherit | |
ImageBuild: | |
name: Container Image Build Check | |
runs-on: ubuntu-latest | |
needs: CI | |
env: | |
REGISTRY: ghcr.io | |
strategy: | |
matrix: | |
image: [ 'micro', 'ol8', 'ol9' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
if: ${{ env.DOCKERHUB_USERNAME != '' }} | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Docker image | |
run: | | |
docker build --build-arg REGISTRY=${REGISTRY} -f .docker/${{matrix.image}}.docker -t ${{matrix.image}} . | |
- name: Show info about built Docker image | |
uses: essentialkaos/docker-info-action@v1 | |
with: | |
image: ${{matrix.image}} | |
show-labels: true |