fix: increase safe bridge gas (#45) #36
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: ci-run-release-please | |
| # Give permissions to the release-please bot to open and update PRs | |
| # and commit to PRs the repository to update package.json | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| attestations: write | |
| packages: write | |
| issues: write | |
| # Run the workflow on push to the main branch and manually | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| # Prepare the release PR with changelog updates and create github releases | |
| # Do not publish to crates.io or upgrade dependencies | |
| release-please: | |
| uses: matter-labs/zksync-ci-common/.github/workflows/release-please.yaml@v1 | |
| secrets: | |
| gh_token: ${{ secrets.RELEASE_TOKEN }} | |
| with: | |
| config: '.github/release-please/config.json' # Specify the path to the configuration file | |
| manifest: '.github/release-please/manifest.json' # Specify the path to the manifest file | |
| upgrade-dependencies: false # Do not upgrade workspace dependencies | |
| update-cargo-lock: false | |
| publish-to-crates-io: false | |
| notify-slack: false | |
| # Trigger workflow to publish binaries | |
| release-binaries: | |
| if: ${{ needs.release-please.outputs.releases_created == 'true' }} | |
| needs: release-please | |
| uses: ./.github/workflows/ci-release.yaml | |
| with: | |
| tag: ${{ needs.release-please.outputs.tag_name }} | |
| secrets: inherit |