feat: Deploy MSCA Single Owner v2, v3 and EP 0.6 Paymaster for Avax #245
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: PR Lint and Release | |
on: | |
pull_request: | |
branches: [master, entry-point-v0.6] | |
push: | |
branches: [master, entry-point-v0.6] | |
jobs: | |
pr_lint_and_release: | |
uses: circlefin/circle-public-github-workflows/.github/workflows/conventional-commit-release.yaml@v1 | |
if: github.repository_owner == 'circlefin' | |
with: | |
release_type: node | |
lint_commits: false | |
secrets: | |
RELEASE_TOKEN: ${{ secrets.PUBLIC_RELEASES_TOKEN }} | |
RELEASE_ACTOR_GPG_PRIVATE_KEY: ${{ secrets.PUBLIC_RELEASES_GPG_PRIVATE_KEY }} | |
RELEASE_ACTOR_GPG_PASSPHRASE: ${{ secrets.PUBLIC_RELEASES_GPG_PASSPHRASE }} | |
release_sbom: | |
needs: pr_lint_and_release | |
if: github.event_name == 'push' && needs.pr_lint_and_release.outputs.release_created == 'true' | |
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1 | |
with: | |
release_tag: ${{ needs.pr_lint_and_release.outputs.release_tag }} |