Skip to content

Commit

Permalink
Fix: release action indent
Browse files Browse the repository at this point in the history
  • Loading branch information
ur-fault committed Sep 24, 2024
1 parent 1ced4a1 commit f632fbc
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,35 +286,35 @@ jobs:
runs-on: ubuntu-latest
needs: ['create-release']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Restore target cache
uses: actions/cache@v4
with:
path: target
key: cratesio-${{ runner.os }}--cargo-${{ hashFiles('**/Cargo.lock') }}
save-always: true
- name: Restore target cache
uses: actions/cache@v4
with:
path: target
key: cratesio-${{ runner.os }}--cargo-${{ hashFiles('**/Cargo.lock') }}
save-always: true

- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- run: sudo apt update && sudo apt install libasound2-dev
- run: sudo apt update && sudo apt install libasound2-dev


- name: publish cmaze
if: ${{ fromJSON(needs.create-release.outputs.do_smt) == true }}
uses: katyo/publish-crates@v2
with:
path: ./cmaze
registry-token: ${{ secrets.CRATES_IO }}
ignore-unpublished-changes: true
if: ${{ fromJSON(needs.create-release.outputs.do_smt) == true }}
uses: katyo/publish-crates@v2
with:
path: ./cmaze
registry-token: ${{ secrets.CRATES_IO }}
ignore-unpublished-changes: true

- name: publish tmaze
if: ${{ fromJSON(needs.create-release.outputs.do_smt) == true }}
uses: katyo/publish-crates@v2
with:
path: ./tmaze
registry-token: ${{ secrets.CRATES_IO }}
ignore-unpublished-changes: true
if: ${{ fromJSON(needs.create-release.outputs.do_smt) == true }}
uses: katyo/publish-crates@v2
with:
path: ./tmaze
registry-token: ${{ secrets.CRATES_IO }}
ignore-unpublished-changes: true

0 comments on commit f632fbc

Please sign in to comment.