mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-26 20:46:05 +00:00
Merge branch 'develop' into tendermint
This commit is contained in:
commit
adfc9a5d1d
3 changed files with 3 additions and 6 deletions
|
@ -34,7 +34,7 @@ runs:
|
||||||
- name: Get nightly version to use
|
- name: Get nightly version to use
|
||||||
id: nightly
|
id: nightly
|
||||||
shell: bash
|
shell: bash
|
||||||
run: echo "::set-output name=version::$(cat .github/nightly-version)"
|
run: echo "version=$(cat .github/nightly-version)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Install WASM toolchain
|
- name: Install WASM toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
|
|
3
.github/workflows/monthly-nightly-update.yml
vendored
3
.github/workflows/monthly-nightly-update.yml
vendored
|
@ -17,7 +17,6 @@ jobs:
|
||||||
run: echo $(date +"nightly-%Y-%m"-01) > .github/nightly-version
|
run: echo $(date +"nightly-%Y-%m"-01) > .github/nightly-version
|
||||||
|
|
||||||
- name: Create the commit
|
- name: Create the commit
|
||||||
id: commit
|
|
||||||
run: |
|
run: |
|
||||||
git config user.name "GitHub Actions"
|
git config user.name "GitHub Actions"
|
||||||
git config user.email "<>"
|
git config user.email "<>"
|
||||||
|
@ -28,8 +27,6 @@ jobs:
|
||||||
git commit -m "Update nightly"
|
git commit -m "Update nightly"
|
||||||
git push -u origin $(date +"nightly-%Y-%m")
|
git push -u origin $(date +"nightly-%Y-%m")
|
||||||
|
|
||||||
echo "::set-output name=commit::$(git rev-parse HEAD)"
|
|
||||||
|
|
||||||
- name: Pull Request
|
- name: Pull Request
|
||||||
uses: actions/github-script@v6
|
uses: actions/github-script@v6
|
||||||
with:
|
with:
|
||||||
|
|
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
|
|
||||||
- name: Get nightly version to use
|
- name: Get nightly version to use
|
||||||
id: nightly
|
id: nightly
|
||||||
run: echo "::set-output name=version::$(cat .github/nightly-version)"
|
run: echo "version=$(cat .github/nightly-version)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Build Dependencies
|
- name: Build Dependencies
|
||||||
uses: ./.github/actions/build-dependencies
|
uses: ./.github/actions/build-dependencies
|
||||||
|
@ -49,7 +49,7 @@ jobs:
|
||||||
|
|
||||||
- name: Get nightly version to use
|
- name: Get nightly version to use
|
||||||
id: nightly
|
id: nightly
|
||||||
run: echo "::set-output name=version::$(cat .github/nightly-version)"
|
run: echo "version=$(cat .github/nightly-version)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
# Doesn't grab the cache as it's not needed
|
# Doesn't grab the cache as it's not needed
|
||||||
- name: Install rustfmt
|
- name: Install rustfmt
|
||||||
|
|
Loading…
Reference in a new issue