-
Notifications
You must be signed in to change notification settings - Fork 119
157 lines (133 loc) · 4.65 KB
/
release-wallet.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
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
156
157
name: Release extension
on:
workflow_dispatch:
inputs:
REF:
required: true
type: string
default: "main"
env:
CI: false
jobs:
setup:
runs-on: ubuntu-24.04
outputs:
VERSION: ${{ steps.set-environment-variables.outputs.VERSION }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ inputs.REF }}
- name: Set environment variables
id: set-environment-variables
run: |
COMMIT_HASH=$(git rev-parse --short $SHA)
BASE_VERSION=$(node -e 'console.log(require("./apps/extension/package.json").version)')
echo "VERSION=v$BASE_VERSION-$COMMIT_HASH" >> "$GITHUB_OUTPUT"
env:
SHA: ${{ github.sha }}
- name: Print workflow inputs
uses: ./.github/actions/print-workflow-inputs
build-extension-chrome:
needs: setup
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ inputs.REF }}
- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache
- name: Restore Rust cache
uses: ./.github/actions/rust-cache
with:
cache-name: build
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- name: Build WASM dependencies
working-directory: ./apps/extension
run: yarn wasm:build
- name: Build the extension
working-directory: ./apps/extension
run: REVISION=$SHA yarn build:chrome
- uses: actions/upload-artifact@v3
with:
name: namada-keychain-chrome
path: ./apps/extension/build/chrome/namada_keychain-*.zip
build-extension-firefox:
needs: setup
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ inputs.REF }}
- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache
- name: Restore Rust cache
uses: ./.github/actions/rust-cache
with:
cache-name: build
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- name: Build WASM dependencies
working-directory: ./apps/extension
run: yarn wasm:build
- name: Build the extension
working-directory: ./apps/extension
run: REVISION=$SHA yarn build:firefox
- uses: actions/upload-artifact@v3
with:
name: namada-keychain-firefox
path: ./apps/extension/build/firefox/namada_keychain-*.zip
release:
needs: [setup, build-extension-chrome, build-extension-firefox]
runs-on: ubuntu-24.04
steps:
- name: Download Chrome extension build
uses: actions/download-artifact@v3
with:
name: namada-keychain-chrome
path: ./namada-keychain-chrome
- name: Download Firefox extension build
uses: actions/download-artifact@v3
with:
name: namada-keychain-firefox
path: ./namada-keychain-firefox
- name: Get extension filenames
id: get-filenames
run: |
echo "CHROME_FILENAME=$(ls -1 ./namada-keychain-chrome)" >> "$GITHUB_OUTPUT"
echo "FIREFOX_FILENAME=$(ls -1 ./namada-keychain-firefox)" >> "$GITHUB_OUTPUT"
- name: Make release body text
run: |
echo "REVISION: $REVISION" >> RELEASE
env:
REVISION: ${{ github.sha }}
- name: Create release
id: create-release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
release_name: ${{ needs.setup.outputs.VERSION }}
tag_name: ${{ needs.setup.outputs.VERSION }}
body_path: ./RELEASE
- name: Add Chrome extension to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./namada-keychain-chrome/${{ steps.get-filenames.outputs.CHROME_FILENAME }}
asset_name: namada-keychain-chrome_${{ needs.setup.outputs.VERSION }}.zip
asset_content_type: application/zip
- name: Add Firefox extension to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./namada-keychain-firefox/${{ steps.get-filenames.outputs.FIREFOX_FILENAME }}
asset_name: namada-keychain-firefox_${{ needs.setup.outputs.VERSION }}.zip
asset_content_type: application/zip