-
Notifications
You must be signed in to change notification settings - Fork 0
155 lines (139 loc) · 4.38 KB
/
dispatch_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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: "[Dispatch] Release"
on:
workflow_dispatch:
inputs:
version:
description: 'enter version(x.y.z)'
required: true
default: '1.0.0'
container_arch:
type: choice
description: 'choose container architecture'
default: linux/amd64
options:
- "linux/amd64"
- "linux/arm64"
env:
VERSION: ${{ github.event.inputs.version }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
ARCH: ${{ github.event.inputs.container_arch }}
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
owner_check:
if: github.repository_owner == 'forest-extension'
runs-on: ubuntu-latest
steps:
- run: echo ${{ github.repository_owner }}
condition_check:
if: github.repository_owner == 'forest-extension'
runs-on: ubuntu-latest
needs: owner_check
steps:
- name: check version format
run: |
if [[ !(${{ env.VERSION }} =~ ^[0-9]\.[0-9]?[0-9]\.[0-9]?[0-9]$) ]];
then
echo "You entered an incorrect version format."
exit 1
fi
- name: debugging
run: |
echo "major=$(echo ${{env.VERSION}} | cut -c 2- | cut -d'.' -f1)"
echo "minor=$(echo ${{env.VERSION}} | cut -c 2- | cut -d'.' -f2)"
echo "patch=$(echo ${{env.VERSION}} | cut -c 2- | cut -d'.' -f3)"
- name: notice when job fails
if: failure()
uses: 8398a7/[email protected]
with:
status: ${{job.status}}
fields: repo,workflow,job
author_name: Github Action Slack
update_master_branch_version_file:
needs: condition_check
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.PAT_TOKEN }}
- name: update version file # That is used where the master_push actions
run: |
echo ${{ env.VERSION }} > src/VERSION
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "[CI/CD] release version ${{ env.VERSION }}"
- name: push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.PAT_TOKEN }}
branch: master
tagging:
needs: update_master_branch_version_file
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.PAT_TOKEN }}
- name: git tagging
run: |
git tag ${{ env.VERSION }}
git push origin "${{ env.VERSION }}"
- name: notice when job fails
if: failure()
uses: 8398a7/[email protected]
with:
status: ${{job.status}}
fields: repo,workflow,job
author_name: Github Action Slack
docker:
needs: tagging
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT_TOKEN }}
- name: get service name
run: |
echo "SERVICE=$(echo ${{ github.repository }} | cut -d '/' -f2)" >> $GITHUB_ENV
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.PAT_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: ${{ env.ARCH }}
push: true
tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{ env.VERSION }}
labels: ${{ steps.meta.outputs.labels }}
- name: Notice when job fails
if: failure()
uses: 8398a7/[email protected]
with:
status: ${{ job.status }}
fields: repo,workflow,job
author_name: Github Action Slack
# notification:
# needs: docker
# runs-on: ubuntu-latest
# steps:
# - name: Slack
# if: always()
# uses: 8398a7/[email protected]
# with:
# status: ${{job.status}}
# fields: repo,message,commit,author,action,ref,workflow,job
# author_name: Github Action Slack