-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 828 Bytes
/
release.yml
File metadata and controls
33 lines (29 loc) · 828 Bytes
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
name: Release
concurrency:
group: ${{ github.workflow }}
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
issues: write
# enable for publishing
#id-token: write
jobs:
release-please:
name: Release Please
runs-on: ubuntu-latest
steps:
- run: echo "Release Please is disabled"
# - name: Create Release
# id: release
# uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
#- if: ${{ steps.release.outputs.release_created }}
# uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
# Enable for publishing
#- if: ${{ steps.release.outputs.release_created }}
# uses: ./.github/actions/publish
# with:
# token: ${{ secrets.NPM_TOKEN }}