-
Notifications
You must be signed in to change notification settings - Fork 44
55 lines (48 loc) · 1.58 KB
/
publish-docker-image.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
name: Publish docker image
on:
push:
tags:
- "v*"
env:
# todo: Replace with `torrust/torrust-tracker` in the final version
DOCKER_IMAGE: josecelano/torrust-tracker
# Azure file share volume mount requires the Linux container run as root
# https://learn.microsoft.com/en-us/azure/container-instances/container-instances-volume-azure-files#limitations
TORRUST_TRACKER_RUN_AS_USER: root
jobs:
dockerhub:
runs-on: ubuntu-latest
environment: dockerhub-josecelano
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ env.DOCKER_IMAGE }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
build-args: |
RUN_AS_USER=${{ env.TORRUST_TRACKER_RUN_AS_USER }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max