-
Notifications
You must be signed in to change notification settings - Fork 7
53 lines (50 loc) · 2.18 KB
/
release.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
43
44
45
46
47
48
49
50
51
52
53
name: 'Release a new version to Github Packages'
on:
release:
types: [published]
env:
REGISTRY: ghcr.io
jobs:
push_to_registry:
name: Push Docker image to GitHub Packages tagged with "latest" and version number.
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Extract metadata (tags, labels) for Docker
id: meta_base_image
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images:
ghcr.io/${{ github.repository }}
- name: Extract metadata (tags, labels) for Docker
id: meta_clustered_image
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images:
ghcr.io/${{ github.repository }}-clustered
- name: Login to ghcr
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push base image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: ./PLATER/
push: true
tags: ${{ steps.meta_base_image.outputs.tags }}
labels: ${{ steps.meta_base_image.outputs.labels }}
build-args: VERSION=${{ steps.get_version.outputs.VERSION }}
- name: Build and push clustered image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: ./PLATER/plater-clustered-docker
push: true
tags: ${{ steps.meta_clustered_image.outputs.tags }}
labels: ${{ steps.meta_clustered_image.outputs.labels }}
build-args: VERSION=${{ steps.get_version.outputs.VERSION }}