diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 17aa18f..d529c11 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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