-
Notifications
You must be signed in to change notification settings - Fork 195
109 lines (94 loc) · 3.63 KB
/
publish-workflows-service.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Publish workflows-service image
on:
workflow_dispatch:
push:
paths:
# Run this pipeline only if there are changes in specified path
- "services/workflows-service/**"
branches:
- dev
- test
- prod
- staging
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/workflows-service
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install jq
run: sudo apt-get install jq
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get package version from package.json
id: get_version
run: |
PACKAGE_VERSION=$(jq -r '.version' services/workflows-service/package.json)
echo "::set-output name=version::$PACKAGE_VERSION"
- name: Print the version
run: echo "The version was ${{ steps.get_version.outputs.version }}"
- name: Extract metadata (tags, labels) for dev Docker
if: github.ref == 'refs/heads/dev'
id: devmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=dev
type=raw,value=commit-${{ github.sha }}-dev
type=raw,value=${{ steps.get_version.outputs.version }}-dev
- name: Extract metadata (tags, labels) for test Docker
if: github.ref == 'refs/heads/test'
id: testmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=test
type=raw,value=commit-${{ github.sha }}-test
type=raw,value=${{ steps.get_version.outputs.version }}-test
- name: Extract metadata (tags, labels) for prod Docker
if: github.ref == 'refs/heads/prod'
id: prodmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=prod
type=raw,value=commit-${{ github.sha }}-prod
type=raw,value=${{ steps.get_version.outputs.version }}-prod
type=raw,value=latest
- name: Build and push Docker image for Dev
if: github.ref == 'refs/heads/dev'
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: services/workflows-service
push: true
tags: ${{ steps.devmeta.outputs.tags }}
labels: ${{ steps.devmeta.outputs.labels }}
- name: Build and push Docker image for Test
if: github.ref == 'refs/heads/test'
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: services/workflows-service
push: true
tags: ${{ steps.testmeta.outputs.tags }}
labels: ${{ steps.testmeta.outputs.labels }}
- name: Build and push Docker image for Prod
if: github.ref == 'refs/heads/prod'
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: services/workflows-service
push: true
tags: ${{ steps.prodmeta.outputs.tags }}
labels: ${{ steps.prodmeta.outputs.labels }}