forked from matter-labs/zksync-era
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 997 Bytes
/
release-please.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_please_output: ${{ toJSON(steps.release.outputs) }}
steps:
- name: Run release-please
id: release
uses: google-github-actions/release-please-action@v3
with:
token: ${{ secrets.RELEASE_TOKEN }}
command: manifest
config-file: .github/release-please/config.json
manifest-file: .github/release-please/manifest.json
monorepo-tags: true
- name: Send Release Info
if: ${{ steps.release.outputs.releases_created }}
uses: matter-labs/format-release-please-for-slack-action@69e6fe9e4ec531b7b5fb0d826f73c190db83cf42 # v2.1.0
with:
release-please-output: ${{ toJSON(steps.release.outputs) }}
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_RELEASES }}