Skip to content
Snippets Groups Projects
Commit 03ac1275 authored by Mara Broda's avatar Mara Broda :coffee: Committed by GitHub
Browse files

ci: fix publish-runtimes for rococo-parachain (or any other -parachain)...

ci: fix publish-runtimes for rococo-parachain (or any other -parachain) failing on incorrect wasm path (#957)
parent 56d89ab0
No related merge requests found
......@@ -192,6 +192,12 @@ jobs:
echo "Found version: >$runtime_ver<"
echo "::set-output name=runtime_ver::$runtime_ver"
- name: Fix parachain runtime name
id: fix-runtime-path
run: |
cd "$RUNTIME_DIR"
mv "$(sed 's/-parachain/_parachain/' <<< ${{ matrix.runtime }})_runtime.compact.compressed.wasm" "${{ matrix.runtime }}_runtime.compact.compressed.wasm" || true
- name: Upload compressed ${{ matrix.runtime }} wasm
uses: actions/upload-release-asset@v1
env:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment