-
Notifications
You must be signed in to change notification settings - Fork 10
85 lines (75 loc) · 2.5 KB
/
docker-publish-nightly.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
83
84
85
name: Docker Publish - Nightly
# This is a modified version of the github publish docker image action
on:
push:
branches:
- 'dev'
# Ignore changes to assets, .devcontainer, .github, or .vscode files
paths-ignore:
- '**/assets/**'
- '**/.vscode/**'
- '**/.github/**'
- '**/.devcontainer/**'
- '**/*.md'
- '**/docs/**'
- '**/frontend/**'
- '**/mkdocs.yml'
pull_request:
branches: [ "dev" ]
paths-ignore:
- '**/assets/**'
- '**/.vscode/**'
- '**/.github/**'
- '**/.devcontainer/**'
- '**/*.md'
- '**/docs/**'
- '**/frontend/**'
- '**/mkdocs.yml'
workflow_dispatch: # Allows manual triggering of the workflow
env:
# Use docker.io for Docker Hub if empty
REGISTRY: docker.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
APP_VERSION: $(date +'%y%m%d')-nightly
jobs:
build_and_push:
name: Push Docker image (nightly) to Docker Hub
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Set APP_VERSION environment variable with date in yymmdd format
- name: Set APP_VERSION
run: echo "APP_VERSION=$(date +'%y%m%d')-nightly" >> $GITHUB_ENV
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
# cache-from: type=local,src=/tmp/.buildx-cache
# cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
platforms: linux/amd64,linux/arm64
build-args: |
APP_VERSION=${{ env.APP_VERSION }}