Skip to content

Commit e027932

Browse files
authored
Fix syntax (#3120)
1 parent 593136b commit e027932

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,19 @@ jobs:
6969
binary_name: boa.exe
7070
runs-on: ${{ matrix.os }}
7171
steps:
72-
- uses: actions/checkout@v3
73-
- name: Install Rust toolchain
72+
- uses: actions/checkout@v3
73+
- name: Install Rust toolchain
7474
uses: actions-rs/toolchain@v1
7575
with:
7676
toolchain: stable
7777
profile: minimal
7878
override: true
79-
- name: Build
80-
run: cargo build --target ${{ matrix.target }} --verbose --release --locked --bin boa
81-
- name: Upload binaries to release
82-
uses: svenstaro/upload-release-action@v2
83-
with:
84-
repo_token: ${{ secrets.GITHUB_TOKEN }}
85-
file: target/${{ matrix.target }}/release/${{ matrix.binary_name }}
86-
asset_name: ${{ matrix.asset_name }}
87-
tag: ${{ github.ref }}
79+
- name: Build
80+
run: cargo build --target ${{ matrix.target }} --verbose --release --locked --bin boa
81+
- name: Upload binaries to release
82+
uses: svenstaro/upload-release-action@v2
83+
with:
84+
repo_token: ${{ secrets.GITHUB_TOKEN }}
85+
file: target/${{ matrix.target }}/release/${{ matrix.binary_name }}
86+
asset_name: ${{ matrix.asset_name }}
87+
tag: ${{ github.ref }}

0 commit comments

Comments
 (0)