Skip to content

Merge pull request #59 from ctr26/dev #54

Merge pull request #59 from ctr26/dev

Merge pull request #59 from ctr26/dev #54

Workflow file for this run

name: Publish Docker
on:
push:
branches:
- main
- master
# pull_request: ~
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 2
- name: Log in to the Container registry
if: ${{ !env.ACT }}
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image (version tag)
if: steps.check-version.outputs.current-version
uses: docker/[email protected]
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:${{ steps.check-version.outputs.current-version }}
labels: ${{ steps.meta.outputs.labels }}