Merge pull request #758 from Support-pl/dev-fixes #966
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: Build Docker Image | |
on: | |
push: | |
branches: | |
- "master" | |
- "dev-*" | |
- "dev" | |
paths-ignore: | |
- "examples" | |
- "**/*.md" | |
- ".github/**" | |
- "!.github/workflows/docker.yml" | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_TAG: ${{github.ref_name == 'master' && 'latest' || github.ref_name}} | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
tags: type=raw,value=${{env.IMAGE_TAG}} | |
images: ${{ env.REGISTRY }}/support-pl/nocloud-app | |
- name: Log in to the Container registry | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |