Skip to content

Commit 5c07e30

Browse files
committed
Single-line run steps
1 parent e8d4599 commit 5c07e30

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ jobs:
1313
- uses: actions/checkout@v4
1414
with:
1515
submodules: true
16-
- run: |
17-
rustup target add ${{ matrix.target }}
18-
cargo nbuild binary --target=${{ matrix.target }} --start-address=${{ matrix.start_address }}
16+
- run: rustup target add ${{ matrix.target }}
17+
- run: cargo nbuild binary --target=${{ matrix.target }} --start-address=${{ matrix.start_address }}
1918
- uses: actions/upload-artifact@v4
2019
if: ${{success()}}
2120
with:
@@ -63,8 +62,7 @@ jobs:
6362
needs: [binaries, linux-libraries, windows-libraries, run-tests]
6463
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/')
6564
steps:
66-
- run: |
67-
mkdir ./release
65+
- run: mkdir ./release
6866
- uses: actions/download-artifact@v4
6967
with:
7068
path: ./release

0 commit comments

Comments
 (0)