Release / feat: partial prepareCalls impl (#789) * chore: upgrade IRN and alloy * chore: bump * chore: remove submodule * chore: use tagged versions * feat: wallet service * chore: implement logic * chore: bump yttrium * chore: gas * chore: bump yttrium * feat: implement dummy signature and paymaster * chore: bump yttrium * fix: reject if paymaster service is provided * chore: bump yttrium * chore: fmt * chore: add TODOs * chore: use tagged version #376
This file contains 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: ⚡ Release | |
run-name: 'Release / ${{ github.event.head_commit.message }}' | |
on: | |
push: | |
branches: | |
- main | |
- master | |
paths-ignore: | |
- 'docs/**' | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
- 'justfile' | |
- 'rustfmt.toml' | |
- '.editorconfig' | |
- '.pre-commit-config.yaml' | |
- '.terraformignore' | |
- '.env.example' | |
concurrency: deploy | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
checks: write | |
jobs: | |
paths_filter: | |
name: Paths Filter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: WalletConnect/actions/github/paths-filter/@2.2.1 | |
id: filter | |
outputs: | |
infra: ${{ steps.filter.outputs.infra }} | |
app: ${{ steps.filter.outputs.app }} | |
release: | |
name: Release | |
needs: [ paths_filter ] | |
uses: WalletConnect/ci_workflows/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
task-name: ${{ vars.TASK_NAME }} | |
infra-changed: ${{ needs.paths_filter.outputs.infra == 'true' }} | |
app-changed: ${{ needs.paths_filter.outputs.app == 'true' }} | |
cd: | |
name: CD | |
needs: [ paths_filter, release ] | |
secrets: inherit | |
uses: ./.github/workflows/sub-cd.yml | |
with: | |
deploy-infra: ${{ needs.paths_filter.outputs.infra == 'true' }} | |
deploy-app: ${{ needs.paths_filter.outputs.app == 'true' }} | |
deploy-prod: true | |
version: ${{ needs.release.outputs.version }} |