-
Notifications
You must be signed in to change notification settings - Fork 34
51 lines (44 loc) · 1.22 KB
/
update-osmosis-test-tube.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
name: update osmosis-test-tube
on:
workflow_dispatch:
name: update osmosis-test-tube
inputs:
osmosis_rev:
description: "osmosis revision"
required: true
type: string
workflow_call:
inputs:
osmosis_rev:
required: true
type: string
env:
CARGO_TERM_COLORS: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ">=1.19.0"
- name: Checkout
uses: actions/checkout@v3
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
./scripts/update-osmosis-test-tube.sh "$OSMOSIS_REV"
env:
OSMOSIS_REV: ${{ inputs.osmosis_rev }}