build(deps): bump soroban-sdk from 25.3.1 to 26.0.0 #108
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: WASM Build & Compress | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build_and_compress: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: contracts/substream_contracts | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: wasm32-unknown-unknown | |
| - name: Install wasm-opt | |
| run: npm install -g wasm-opt | |
| - name: Make script executable | |
| run: chmod +x scripts/compress_wasm.sh | |
| - name: Build and Compress WASM | |
| run: make build-compressed |