mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
update kava version to the correct current commit (#1552)
* update kava version to the correct current commit https://github.com/Kava-Labs/kava/pull/1551/files used the id instead of the commit hash 😞 Use the commit hash not the id * use eternal release tag * use kava version for current commit when validating internal testnet genesis --------- Co-authored-by: Levi Schoen <levismschoen@gmail.com>
This commit is contained in:
parent
e81507a242
commit
22231db05a
14
.github/workflows/ci-default.yml
vendored
14
.github/workflows/ci-default.yml
vendored
@ -36,14 +36,24 @@ jobs:
|
|||||||
validate-internal-testnet-genesis:
|
validate-internal-testnet-genesis:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: checkout repo from current commit
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: save version of kava that will be deployed if this pr is merged
|
||||||
|
id: kava-version
|
||||||
|
run: |
|
||||||
|
echo "KAVA_VERSION=$(cat ./ci/env/kava-internal-testnet/KAVA.VERSION)" >> $GITHUB_OUTPUT
|
||||||
- name: checkout repo from master
|
- name: checkout repo from master
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
- name: checkout version of kava used by internal testnet
|
- name: checkout version of kava that will be deployed if this pr is merged
|
||||||
run: |
|
run: |
|
||||||
git pull -p
|
git pull -p
|
||||||
git checkout $(cat ./ci/env/kava-internal-testnet/KAVA.VERSION)
|
git checkout $KAVA_VERSION
|
||||||
|
env:
|
||||||
|
KAVA_VERSION: ${{ steps.kava-version.outputs.KAVA_VERSION }}
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v3
|
uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
|
2
ci/env/kava-internal-testnet/KAVA.VERSION
vendored
2
ci/env/kava-internal-testnet/KAVA.VERSION
vendored
@ -1 +1 @@
|
|||||||
7f57dae02b4f732fac4cf5f53379728d92578d5f
|
357ec96338a4c4fa4624560f1182bf85cc068009
|
||||||
|
Loading…
Reference in New Issue
Block a user