Skip to content

Commit 823b95f

Browse files
committed
ci: Fix uploading artifacts
1 parent aa17ce4 commit 823b95f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/launcher.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@ name: Build Launcher
33
on:
44
push:
55
paths:
6-
- Launcher/*
6+
- Launcher/**
77
- .github/workflows/launcher.yml
88
pull_request:
99
paths:
1010
- Launcher/*
1111
- .github/workflows/launcher.yml
1212
workflow_call:
1313

14-
env:
15-
CARGO_TERM_COLOR: always
16-
1714
jobs:
1815
build_launcher:
1916
name: Build Launcher
@@ -35,7 +32,7 @@ jobs:
3532
steps:
3633
- name: Checkout
3734
uses: actions/[email protected]
38-
- name: Setup rust
35+
- name: Setup Rust
3936
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
4037
with:
4138
toolchain: ${{ matrix.toolchain }}
@@ -45,5 +42,8 @@ jobs:
4542
uses: actions/[email protected]
4643
with:
4744
name: ${{ matrix.os }}-${{ matrix.toolchain }}
48-
path: ^target/debug/rhythm_doctor_launcher(?:\.exe)?$
45+
path: |
46+
${{ github.workspace }}/Launcher/target/debug/rhythm_doctor_editor_launcher
47+
${{ github.workspace }}/Launcher/target/debug/rhythm_doctor_editor_launcher.exe
48+
${{ github.workspace }}/Launcher/target/debug/rhythm_doctor_editor_launcher.pdb
4949
if-no-files-found: error

0 commit comments

Comments
 (0)