-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (38 loc) · 1.05 KB
/
docker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 }}