Skip to content

Commit

Permalink
ci: fix incorrect runtime output path
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianFranzen committed Jun 27, 2024
1 parent 311fe34 commit 897efc4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ jobs:
include:
- package: timechain-runtime
features: default
crate: timechain_runtime
- package: timechain-runtime
features: development
crate: timechain_runtime
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -72,13 +74,13 @@ jobs:
with:
name: ${{ matrix.package }}.${{ matrix.features }}.wasm
if-no-files-found: error
path: target/release/wbuild/${{ matrix.package }}/${{ matrix.package }}.compact.compressed.wasm
path: target/release/wbuild/${{ matrix.crate }}/${{ matrix.crate }}.compact.compressed.wasm
- name: Upload timechain metadata
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.package }}.${{ matrix.features }}.scale
if-no-files-found: error
path: target/release/wbuild/${{ matrix.package }}/${{ matrix.package }}.metadata.scale
path: target/release/wbuild/${{ matrix.crate }}/${{ matrix.crate }}.metadata.scale

update-metadata:
runs-on: [ self-hosted-timechain ]
Expand Down

0 comments on commit 897efc4

Please sign in to comment.