-
Notifications
You must be signed in to change notification settings - Fork 0
95 lines (85 loc) · 2.78 KB
/
docker-image.yaml
File metadata and controls
95 lines (85 loc) · 2.78 KB
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
86
87
88
89
90
91
92
93
94
95
name: Docker Image CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "main"
release:
types: [created]
jobs:
# test:
# name: Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: "16.x"
# - run: yarn
# - run: yarn build
# - run: yarn test
# define job to build and publish docker image
build-and-publish:
name: Build and Publish Docker image
# needs: test
# run only when code is compiling and tests are passing
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# steps to perform in job
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/${{ github.repository }}
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
type=raw,value=latest,enable={{is_default_branch}}
# setup Docker buld action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# - name: Login to DockerHub
# uses: docker/login-action@v2
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Publish to GitHub Container Registry
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ github.event.release.tag_name }}
RELEASE_TIME=${{ github.event.release.created_at }}
GIT_REPO=${{ github.repository }}
GIT_COMMIT_SHA=${{ github.sha }}
GIT_COMMIT_TIME=${{ github.event.head_commit.timestamp }}
GIT_REF=${{ github.ref_name }}
GIT_WORKFLOW_SHA=${{ github.run_id }}
cache-from: type=registry,ref=${{ github.ref_name }}
cache-to: type=inline
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}