-
Notifications
You must be signed in to change notification settings - Fork 5
115 lines (106 loc) · 3.83 KB
/
beta-java-publish.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
110
111
112
113
name: Publish and deploy
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
branches:
- cb-github-action-upload-to-gcr
env:
SERVICE_NAME: ${{ github.event.repository.name }}
GOOGLE_PROJECT: broad-juniper-eng-infra
GOOGLE_DOCKER_REPOSITORY: us-central1-docker.pkg.dev
IMAGE_REPOSITORY_NAME: juniper
jobs:
get-version-tag:
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.tag.outputs.tag }}
steps:
- name: Checkout Current Code
uses: actions/checkout@v3
with:
token: ${{ secrets.BROADBOT_TOKEN }}
- name: Parse Tag
id: tag
run: echo "tag=$(git describe --tags)" >> $GITHUB_OUTPUT
publish-admin-image:
needs: get-version-tag
permissions:
contents: 'read'
id-token: 'write'
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.build-publish.outputs.published-image }}
steps:
- name: Checkout Current Code
uses: actions/checkout@v3
with:
token: ${{ secrets.BROADBOT_TOKEN }}
- name: build and publish image
id: build-publish
uses: ./.github/actions/juniper-eng-build-push-image
with:
version-tag: ${{ needs.get-version-tag.outputs.tag }}
image-repo: 'us-central1-docker.pkg.dev'
image-name: "broad-juniper-eng-infra/juniper/${{ github.event.repository.name }}-admin"
gradle-build-args: ':api-admin:jibDockerBuild'
- name: Notify slack on failure
uses: broadinstitute/[email protected]
if: failure()
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#juniper-dev-notifications'
status: failure
author_name: Publish docker Image
fields: job
text: "Publish to juniper eng infra failed :sadpanda:, image ${{ steps.build-publish.outputs.published-image }} failed to publish"
username: 'Juniper Build Notifications'
publish-participant-image:
needs: get-version-tag
permissions:
contents: 'read'
id-token: 'write'
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.build-publish.outputs.published-image }}
steps:
- name: Checkout Current Code
uses: actions/checkout@v3
with:
token: ${{ secrets.BROADBOT_TOKEN }}
- name: build and publish image
id: build-publish
uses: ./.github/actions/juniper-eng-build-push-image
with:
version-tag: ${{ needs.get-version-tag.outputs.tag }}
image-repo: 'us-central1-docker.pkg.dev'
image-name: "broad-juniper-eng-infra/juniper/${{ github.event.repository.name }}-participant"
gradle-build-args: ':api-participant:jibDockerBuild'
- name: Notify slack on failure
uses: broadinstitute/[email protected]
if: failure()
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#juniper-dev-notifications'
status: failure
author_name: Publish docker Image
fields: job
text: "Publish to broad-juniper-eng-infra failed :sadpanda:, image ${{ steps.build-publish.outputs.published-image }} failed to publish"
username: 'Juniper Build Notifications'
notify-upon-completion:
runs-on: ubuntu-latest
if: always()
needs: [get-version-tag]
steps:
- uses: broadinstitute/[email protected]
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#juniper-dev-notifications'
# Result status on the set version in dev job which actually performs the deploy
author_name: Image published to juniper eng infra
fields: job
text: Deploy to dev of ${{ needs.get-version-tag.outputs.tag }} completed successfully
username: 'Juniper Build Notifications'