Merge pull request #911 from Support-pl/dev #1207
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/metadata-action@v3.6.1 | |
with: | |
tags: type=raw,value=${{env.IMAGE_TAG}} | |
images: ${{ env.REGISTRY }}/support-pl/nocloud-app | |
- name: Log in to the Container registry | |
uses: docker/login-action@v1.10.0 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2.7.0 | |
with: | |
context: . | |
file: Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |