-
Notifications
You must be signed in to change notification settings - Fork 121
104 lines (97 loc) · 3.12 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
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
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ github.token }}
outputs:
namadillo_tag: ${{ steps.release.outputs['apps/namadillo--tag_name'] }}
extension_tag: ${{ steps.release.outputs['apps/extension--tag_name'] }}
types_tag: ${{ steps.release.outputs['packages/types--tag_name'] }}
sdk_tag: ${{ steps.release.outputs['packages/sdk--tag_name'] }}
steps:
- uses: googleapis/release-please-action@v4
id: release
build-namadillo:
needs: [release-please]
if: ${{ needs.release-please.outputs.namadillo_tag }}
name: Release Namadillo
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and Release Namadillo
uses: ./.github/actions/release-project
with:
tag: ${{ needs.release-please.outputs.namadillo_tag }}
bundle_filename: ${{ needs.release-please.outputs.namadillo_tag }}.zip
working_dir: ./apps/namadillo
build-sdk:
needs: [release-please]
if: ${{ needs.release-please.outputs.sdk_tag }}
name: Release SDK
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and Release SDK
uses: ./.github/actions/release-project
with:
tag: ${{ needs.release-please.outputs.sdk_tag }}
bundle_filename: namada-${{ needs.release-please.outputs.sdk_tag }}.zip
working_dir: ./packages/sdk
build-types:
needs: [release-please]
if: ${{ needs.release-please.outputs.types_tag }}
name: Release Types
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and Release Types
uses: ./.github/actions/release-project
with:
tag: ${{ needs.release-please.outputs.types_tag }}
bundle_filename: namada-${{ needs.release-please.outputs.types_tag }}.zip
working_dir: ./packages/types
build-keychain-chrome:
needs: release-please
if: ${{ needs.release-please.outputs.extension_tag }}
runs-on: ubuntu-24.04
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Chrome Extension
uses: ./.github/actions/build-extension
with:
browser: chrome
tag: ${{ needs.release-please.outputs.extension_tag }}
build-keychain-firefox:
needs: release-please
if: ${{ needs.release-please.outputs.extension_tag }}
runs-on: ubuntu-24.04
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Firefox Extension
uses: ./.github/actions/build-extension
with:
browser: firefox
tag: ${{ needs.release-please.outputs.extension_tag }}