feat(pinner.xyz): add Infura alternative page, polish copy across fun… #4456
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: Build | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| workflow_dispatch: | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout all commits | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup | |
| uses: LumeWeb/workflows/.github/actions/setup-all@develop | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| - name: Setup TinyGo | |
| uses: acifani/setup-tinygo@v2 | |
| with: | |
| tinygo-version: "0.41.1" | |
| - name: Set TinyGo env | |
| run: | | |
| echo "TINYGOROOT=$(dirname $(dirname $(which tinygo)))" >> "$GITHUB_ENV" | |
| echo "TINYGOPATH=$(which tinygo)" >> "$GITHUB_ENV" | |
| echo "$(dirname $(which tinygo))" >> "$GITHUB_PATH" | |
| - name: Generate contract types | |
| run: pnpm --filter=@lumeweb/lbry-sdk generate | |
| - name: Install pinner-cli | |
| uses: ./.github/actions/setup-pinner-cli | |
| - name: Build | |
| run: pnpm build |