-
Notifications
You must be signed in to change notification settings - Fork 20
54 lines (46 loc) · 1.43 KB
/
release.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
name: Release
on:
pull_request:
types:
- closed
workflow_dispatch:
jobs:
release:
if: |
(github.event.pull_request.merged == true &&
github.event.pull_request.base.ref == 'master') ||
github.actor == 'janjaali'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get version
run: |
VERSION=$(cat ./version)
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV
- uses: bbonkr/[email protected]
id: validateTag
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: v${{ env.RELEASE_VERSION }}
- name: Fail if version tag already exists
if: ${{ steps.validateTag.outputs.tag != '' }}
run: exit 1
- name: Push version tag to repository
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ env.RELEASE_VERSION }}
create_annotated_tag: true
tag_prefix: v
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
push: true
tags: ghashange/sendgrid-mock:${{ env.RELEASE_VERSION }}