Skip to content

Commit 7768017

Browse files
Don't care about building on nightly. (#10)
* Don't care about building on nightly. * Get filename right.
1 parent 4885b85 commit 7768017

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@ env:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
continue-on-error: ${{ matrix.experimental || false }}
12-
strategy:
13-
matrix:
14-
# All code should be running on stable now
15-
rust: [nightly, stable]
16-
include:
17-
# Nightly is only for reference and allowed to fail
18-
- rust: nightly
19-
experimental: true
2011
steps:
2112
- name: Checkout Code
2213
uses: actions/checkout@v3
@@ -27,7 +18,7 @@ jobs:
2718
uses: actions-rs/toolchain@v1
2819
with:
2920
profile: minimal
30-
toolchain: ${{ matrix.rust }}
21+
toolchain: stable
3122
override: true
3223
target: thumbv6m-none-eabi
3324

@@ -57,6 +48,6 @@ jobs:
5748
uses: softprops/action-gh-release@v1
5849
with:
5950
files: |
60-
target/thumbv6m-none-eabi/release/neotron-pico
51+
./target/thumbv6m-none-eabi/release/neotron-pico-bios
6152
env:
6253
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)