build(deps): bump @dyne/slangroom-chain from 1.9.19 to 1.10.4 #210
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
| # SPDX-FileCopyrightText: 2024-2025 Dyne.org foundation | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: 🧪 & 📣 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| resue: | |
| name: 🚨 reuse | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: fsfe/reuse-action@v5 | |
| test: | |
| name: 🧪 Test | |
| needs: resue | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| # - windows-latest | |
| architecture: | |
| - x64 | |
| - arm64 | |
| # exclude: | |
| # - os: windows-latest | |
| # architecture: arm64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: jdx/mise-action@v2 | |
| - uses: ./.github/actions/setup | |
| - run: make tests | |
| - name: Build slangroom-exec | |
| run: make slangroom-exec | |
| working-directory: bindings/go | |
| - name: Go Tests | |
| run: make test | |
| working-directory: bindings/go | |
| release: | |
| name: 📣 Release | |
| needs: test | |
| if: github.ref == 'refs/heads/main' | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release: ${{ steps.release.outputs.release }} | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: ./.github/actions/setup | |
| - run: | | |
| bun x semantic-release | |
| if [[ `git tag --points-at HEAD` == "" ]]; then | |
| echo "release=False" >> $GITHUB_OUTPUT | |
| else | |
| echo "release=True" >> $GITHUB_OUTPUT | |
| fi | |
| id: release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| publish_docker_image: | |
| name: 🐳 Publish Docker image | |
| needs: [release] | |
| if: ${{ needs.release.outputs.release == 'True' }} | |
| uses: ForkbombEu/workflows/.github/workflows/publish-ghcr.yml@main | |
| secrets: inherit |