-
Notifications
You must be signed in to change notification settings - Fork 4
152 lines (130 loc) · 4.24 KB
/
bump-release.yaml
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
name: Bump and Release
on:
workflow_dispatch:
inputs:
bump:
description: 'New version'
required: true
default: 'patch'
type: choice
options:
- major
- minor
- patch
- rc
- beta
- alpha
permissions:
contents: write
env:
CARGO_TERM_COLOR: always
ANCHOR_VERSION: v0.29.0
jobs:
build-all:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Install core deps
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: jq pkg-config build-essential libudev-dev libssl-dev
execute_install_scripts: true
- name: Install cargo-edit
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-edit
version: "0.13.0"
- name: Run version bump script
run: |
source ./scripts/ci/bump-version.sh ${{ github.event.inputs.bump }}
echo "$old_version" > OLD_VERSION
- name: Create artificats of changes from diff
run: |
git status --porcelain | sed s/^...// | tar -cvf changes.tar --files-from -
mkdir -p changes
cd changes
mv ../changes.tar .
tar -xvf changes.tar
rm changes.tar
cd -
shell: bash
- name: Upload source with bumped version
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: bumped_source
path: changes/**/*
- name: Env variables
run: |
chmod +x ./scripts/ci/solana-version.sh
echo "CI_TAG=v$(cat VERSION)" >> $GITHUB_ENV
SOLANA_VERSION="$(./scripts/ci/solana-version.sh)"
SOLANA_VERSION="${SOLANA_VERSION#=}"
echo "SOLANA_VERSION=$SOLANA_VERSION" >> "$GITHUB_ENV"
- uses: ./.github/actions/setup-solana/
- name: Install anchor
uses: baptiste0928/cargo-install@v3
with:
crate: anchor-cli
git: https://github.com/coral-xyz/anchor
tag: ${{ env.ANCHOR_VERSION }}
- uses: Swatinem/rust-cache@v2
with:
key: tarball-${{ runner.target }}-build-${{ hashFiles('**/Cargo.lock') }}
- name: Build release tarball
run: |
chmod +x ./scripts/ci/create-tarball.sh
chmod +x ./scripts/build-all.sh
./scripts/ci/create-tarball.sh
- name: Upload tarball
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: release_build
path: sablier-geyser-plugin-release-*
release:
needs:
- build-all
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: bumped_source
- name: Install jq
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: jq
execute_install_scripts: true
- name: Env variables
run: |
chmod +x ./scripts/ci/solana-version.sh
echo "CI_TAG=v$(cat VERSION)" >> $GITHUB_ENV
echo "OLD_VERSION=v$(cat OLD_VERSION)" >> $GITHUB_ENV
SOLANA_VERSION="$(./scripts/ci/solana-version.sh)"
SOLANA_VERSION="${SOLANA_VERSION#=}"
echo "SOLANA_VERSION=$SOLANA_VERSION" >> "$GITHUB_ENV"
chmod +x ./scripts/ci/rust-version.sh
source scripts/ci/rust-version.sh
echo "PLUGIN_RUST_VERSION=$rust_stable" >> $GITHUB_ENV
- name: Commit and tag
uses: EndBug/add-and-commit@v9
with:
message: Bump from ${{ env.OLD_VERSION }} to ${{ env.CI_TAG }}
tag: ${{ env.CI_TAG }}
- uses: actions/download-artifact@v4
with:
name: release_build
- name: Publish Github release
uses: softprops/action-gh-release@v2
with:
fail_on_unmatched_files: true
name: ${{ env.CI_TAG }}
tag_name: ${{ env.CI_TAG }}
body: |
sablier-geyser-plugin ${{ env.CI_TAG }}
solana ${{ env.SOLANA_VERSION }}
rust ${{ env.PLUGIN_RUST_VERSION }}
# this gh action ignores the working directory, and defaults to the root of the repo
files: |
sablier-geyser-plugin-release-*