Skip to content

Merge branch 'main' of github.com:webb-tools/tangle into srtool-actio… #5

Merge branch 'main' of github.com:webb-tools/tangle into srtool-actio…

Merge branch 'main' of github.com:webb-tools/tangle into srtool-actio… #5

name: Srtool Wasm Publish
on:
workflow_dispatch:
push:
tags: ["v*.*.*"]
branches: [srtool-action-fix]
jobs:
srtool:
runs-on: ubuntu-latest
strategy:
matrix:
chain: ["testnet", "mainnet"]
steps:
- uses: actions/checkout@v3
- name: Srtool build
if: matrix.chain == 'mainnet'
id: srtool_build
uses: chevdor/[email protected]
with:
chain: ${{ matrix.chain }}
runtime_dir: runtime/${{ matrix.chain }}
package: tangle-runtime
- name: Srtool build testnet
if: matrix.chain == 'testnet'
uses: chevdor/[email protected]
with:
chain: ${{ matrix.chain }}
runtime_dir: runtime/${{ matrix.chain }}
package: tangle-testnet-runtime
- name: Summary
run: |
echo '${{ steps.srtool_build.outputs.json }}' | jq . > ${{ matrix.chain }}-srtool-digest.json
cat ${{ matrix.chain }}-srtool-digest.json
echo "Runtime location: ${{ steps.srtool_build.outputs.wasm }}"
- name: Upload ${{ matrix.chain }} wasm to release
if: matrix.chain == 'mainnet'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: runtime/mainnet/target/srtool/release/wbuild/tangle-runtime/tangle_runtime.compact.compressed.wasm
asset_name: tangle-${{ matrix.chain }}-srtool-compact.compressed.wasm
tag: ${{ github.ref }}
overwrite: true
- name: Upload ${{ matrix.chain }} wasm to release
if: matrix.chain == 'testnet'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: runtime/testnet/target/srtool/release/wbuild/tangle-testnet-runtime/tangle_runtime.compact.compressed.wasm
asset_name: tangle-${{ matrix.chain }}-srtool-compact.compressed.wasm
tag: ${{ github.ref }}
overwrite: true