Skip to content

- Added action to OVH VM #281

- Added action to OVH VM

- Added action to OVH VM #281

Workflow file for this run

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 }}