We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c301c4 commit e27431dCopy full SHA for e27431d
.github/actions/build/action.yml
@@ -19,15 +19,16 @@ runs:
19
target
20
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
21
- name: Build
22
- shell: bash
23
run: cargo build --release
+ - name: Copy config
24
+ run: |
25
+ cp huly-coder.yaml target/release/huly-coder.yaml
26
- name: Upload artifact
27
uses: actions/upload-artifact@v4
28
with:
29
name: huly-coder-${{inputs.os}}
- path: target/release/huly-coder
- - name: Upload Config
30
- uses: actions/upload-artifact@v4
31
- with:
32
- name: huly-coder-${{inputs.os}}
33
- path: huly-coder.yaml
+ if-no-files-found: ignore
+ path: |
+ target/release/huly-coder
+ target/release/huly-coder.exe
34
+ target/release/huly-coder.yaml
0 commit comments