feat: Refactor WG DAL (#3560) #2105
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-please | |
# Give permissions to the release-please to open, update PRs | |
# and commit to PRs the repository to update Cargo.lock | |
permissions: | |
contents: write | |
pull-requests: write | |
id-token: write | |
attestations: write | |
# Run the workflow on push to the main branch or manually | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
# Prepare the release PR with changelog updates and create github releases | |
release-please: | |
uses: matter-labs/zksync-ci-common/.github/workflows/release-please.yaml@v1 | |
secrets: | |
slack_webhook: ${{ secrets.SLACK_WEBHOOK_RELEASES }} # Slack webhook for notifications | |
gh_token: ${{ secrets.RELEASE_TOKEN }} # GitHub token for release-please | |
with: | |
config: '.github/release-please/config.json' # Path to the configuration file | |
manifest: '.github/release-please/manifest.json' # Path to the manifest file | |
update-cargo-lock: true # Update Cargo.lock file in the release PR | |
publish-to-crates-io: true # Enable publishing to crates.io | |
upgrade-dependencies: true # Upgrade cross-workspace dependencies | |
version-suffix: 'non-semver-compat' # Version suffix for the crates.io release |