Merge branch 'develop' into tendermint

This commit is contained in:
Luke Parker 2022-10-21 22:33:41 -04:00
commit adfc9a5d1d
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
3 changed files with 3 additions and 6 deletions

View file

@ -34,7 +34,7 @@ runs:
- name: Get nightly version to use
id: nightly
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
uses: actions-rs/toolchain@v1

View file

@ -17,7 +17,6 @@ jobs:
run: echo $(date +"nightly-%Y-%m"-01) > .github/nightly-version
- name: Create the commit
id: commit
run: |
git config user.name "GitHub Actions"
git config user.email "<>"
@ -28,8 +27,6 @@ jobs:
git commit -m "Update nightly"
git push -u origin $(date +"nightly-%Y-%m")
echo "::set-output name=commit::$(git rev-parse HEAD)"
- name: Pull Request
uses: actions/github-script@v6
with:

View file

@ -17,7 +17,7 @@ jobs:
- name: Get nightly version to use
id: nightly
run: echo "::set-output name=version::$(cat .github/nightly-version)"
run: echo "version=$(cat .github/nightly-version)" >> $GITHUB_OUTPUT
- name: Build Dependencies
uses: ./.github/actions/build-dependencies
@ -49,7 +49,7 @@ jobs:
- name: Get nightly version to use
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
- name: Install rustfmt