Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
Signed-off-by: Xavier Lau <[email protected]>
  • Loading branch information
aurexav committed Dec 24, 2024
1 parent 6009340 commit 9d01d97
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions action/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ runs:
steps:
- name: Setup Polkadot Runtime Releaser
shell: bash
run: curl \
-L https://github.com/hack-ink/polkadot-runtime-releaser/releases/download/v0.1.4/prr-x86_64-unknown-linux-gnu.tar.gz | \
tar xz && \
chmod u+x prr && \
run: curl
-L https://github.com/hack-ink/polkadot-runtime-releaser/releases/download/v0.1.4/prr-x86_64-unknown-linux-gnu.tar.gz |
tar xz &&
chmod u+x prr &&
mv prr /usr/local/bin/prr
- name: Build
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion action/override/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
ref: ${{ inputs.ref }}
path: runtime
- name: Build runtime
uses: hack-ink/polkadot-runtime-releaser/action/build@v0.1.4
uses: hack-ink/polkadot-runtime-releaser/action/build@main
with:
runtime: ${{ inputs.runtime }}
features: ${{ inputs.features }}
Expand Down
10 changes: 5 additions & 5 deletions action/try-runtime/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ runs:
steps:
- name: Setup try runtime CLI
shell: bash
run: curl \
-L https://github.com/paritytech/try-runtime-cli/releases/download/v${{ inputs.try-runtime-version }}/try-runtime-x86_64-unknown-linux-musl \
-o try-runtime && \
chmod +x try-runtime && \
run: curl
-L https://github.com/paritytech/try-runtime-cli/releases/download/v${{ inputs.try-runtime-version }}/try-runtime-x86_64-unknown-linux-musl
-o try-runtime &&
chmod +x try-runtime &&
mv try-runtime /usr/local/bin/try-runtime
- name: Build runtime
uses: hack-ink/polkadot-runtime-releaser/action/build@v0.1.4
uses: hack-ink/polkadot-runtime-releaser/action/build@main
with:
runtime: ${{ inputs.runtime }}
features: ${{ inputs.features }}
Expand Down

0 comments on commit 9d01d97

Please sign in to comment.