ci: fix artifacts path
This commit is contained in:
parent
e947271f9a
commit
657a688180
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build
|
name: build librashader-capi
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -17,13 +17,15 @@ jobs:
|
||||||
os: [ubuntu-latest, windows-latest]
|
os: [ubuntu-latest, windows-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Checkout repository
|
||||||
- name: Install nightly
|
uses: actions/checkout@v3
|
||||||
|
- name: Install nightly Rust
|
||||||
uses: actions-rs/toolchain@v1.0.6
|
uses: actions-rs/toolchain@v1.0.6
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
- uses: humbletim/setup-vulkan-sdk@v1.2.0
|
- name: Setup Vulkan SDK
|
||||||
|
uses: humbletim/setup-vulkan-sdk@v1.2.0
|
||||||
with:
|
with:
|
||||||
vulkan-query-version: latest
|
vulkan-query-version: latest
|
||||||
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Cross, SPIRV-Headers, SPIRV-Reflect, SPIRV-Tools, Glslang
|
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Cross, SPIRV-Headers, SPIRV-Reflect, SPIRV-Tools, Glslang
|
||||||
|
@ -38,4 +40,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.2
|
||||||
with:
|
with:
|
||||||
name: build-outputs
|
name: build-outputs
|
||||||
path: "target/librashader.*"
|
path: "target/release/librashader.*"
|
||||||
|
|
Loading…
Reference in a new issue