-
Notifications
You must be signed in to change notification settings - Fork 20
43 lines (34 loc) · 1.11 KB
/
deploy.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
name: Deploy Release
on:
push:
tags:
- 'v*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
create-release-notes:
uses: ./.github/workflows/create-release-notes.yml
secrets: inherit
create-service-json:
uses: ./.github/workflows/create-service-json.yml
needs: create-release-notes
secrets: inherit
build-signed-bundle:
uses: ./.github/workflows/build-signed-bundle.yml
needs: create-service-json
secrets: inherit
create-github-release:
uses: ./.github/workflows/create-github-release.yml
needs: build-signed-bundle
secrets: inherit
deploy-to-production-track:
uses: ./.github/workflows/deploy-to-open-track.yml
needs: build-signed-bundle
secrets: inherit
# It allow to remove artifacts created to use between workflows (google service json, bundles, etc)
remove-artifacts:
uses: ./.github/workflows/clean-up-artifacts.yml
needs: deploy-to-production-track
# Run this job even if "needs" job is failed
if: ${{ always() && contains(needs.*.result, 'failure') }}
secrets: inherit