-
Notifications
You must be signed in to change notification settings - Fork 33
82 lines (71 loc) · 2.18 KB
/
docker-dev.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Publish docker images when new releases come out
name: Publish Docker Images (on push to main)
on:
push:
branches: ['main']
workflow_dispatch: ~
env:
GHCR_REGISTRY: ghcr.io
GHCR_IMAGE_NAME: ${{ github.repository }}/tavern
jobs:
tavern-docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
lfs: 'true'
- name: Replace lfs references with files
run: git lfs pull
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
spellshift/tavern
tags: |
type=ref,event=branch
type=edge,branch=main
type=sha,format=long
- name: Build and push Dockerhub image
uses: docker/build-push-action@v4
with:
file: ./docker/tavern.Dockerfile
context: .
push: true
target: production
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta_ghcr
uses: docker/metadata-action@v4
with:
images: |
${{ env.GHCR_REGISTRY }}/${{ env.GHCR_IMAGE_NAME }}
tags: |
type=ref,event=branch
type=edge,branch=main
type=sha,format=long
- name: Build and push GHCR image
uses: docker/build-push-action@v4
with:
file: ./docker/tavern.Dockerfile
context: .
push: true
target: production
tags: ${{ steps.meta_ghcr.outputs.tags }}
labels: ${{ steps.meta_ghcr.outputs.labels }}