forked from anoma/namada
-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (102 loc) · 3.08 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
105
106
107
108
109
110
name: Release 🚢
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-[a-z]+"
branches:
- '*-rc[0-9]*'
workflow_dispatch:
inputs:
tag:
description: "The tag to release."
required: true
permissions:
id-token: write
contents: write
env:
GIT_LFS_SKIP_SMUDGE: 1
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: full
jobs:
wasm:
runs-on: [ubuntu-latest]
container:
image: ghcr.io/heliaxdev/namada-ci:wasm-main
options: --user 1001
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --tags --force origin # WA: https://github.com/actions/checkout/issues/882
- name: Switch to tag if specified
if: "${{ github.event.inputs.tag != '' }}"
run: git checkout ${{ github.event.inputs.tag }}
- name: Build wasm
run: make build-wasm-scripts
- name: Upload wasm artifacts
uses: actions/upload-artifact@v4
with:
name: wasm-${{ github.sha }}
path: |
wasm/tx_*.wasm
wasm/vp_*.wasm
wasm/checksums.json
release-binaries:
runs-on: ${{ matrix.os }}
needs: [wasm]
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --tags --force origin # WA: https://github.com/actions/checkout/issues/882
- name: Switch to tag if specified
if: "${{ github.event.inputs.tag != '' }}"
run: git checkout ${{ github.event.inputs.tag }}
- name: Install dependencies
if: startsWith(runner.os, 'Linux')
run: sudo apt-get update && sudo apt-get -y install libudev-dev
- name: Install protobuf
uses: arduino/setup-protoc@v3
with:
version: "25.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: taiki-e/install-action@v2
with:
tool: cargo-binstall
- name: Install cargo-about
run: cargo binstall cargo-about --no-confirm
- name: Download wasm artifacts
uses: actions/download-artifact@v4
with:
name: wasm-${{ github.sha }}
path: wasm
- name: Build release package for ${{ matrix.os }}
run: make package
- name: Upload binaries package
uses: actions/upload-artifact@v4
with:
name: release-${{ matrix.os }}-${{ github.sha }}
path: ./*.tar.gz
release:
needs: [release-binaries]
runs-on: [ubuntu-latest]
if: always() && startsWith(github.ref, 'refs/tags/v')
steps:
- id: get_version
uses: battila7/get-version-action@v2
- name: Download release artifacts
uses: actions/download-artifact@v4
- name: Create github release
uses: softprops/action-gh-release@v2
with:
draft: true
files: ./**/*.tar.gz
tag_name: ${{ steps.get_version.outputs.version }}
name: Namada ${{ steps.get_version.outputs.version-without-v }}