-
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (66 loc) · 2.58 KB
/
release-please.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: release-please
on:
push:
branches:
- main
env:
ACTION_NAME: release-please-action
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
release-please-release:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: GoogleCloudPlatform/release-please-action@main
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: ${{env.ACTION_NAME}}
command: github-release
- uses: actions/checkout@v4
- name: tag major and patch versions
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/google-github-actions/release-please-action.git"
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git push origin :v${{ steps.release.outputs.major }} || true
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
if: ${{ steps.release.outputs.release_created }}
release-please-pr:
runs-on: ubuntu-latest
needs:
- build
- release-please-release
steps:
- id: release-pr
uses: GoogleCloudPlatform/release-please-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: php
fork: true
package-name: ${{env.ACTION_NAME}}
command: release-pr
- id: label
if: ${{ steps.release-pr.outputs.pr }}
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
await github.issues.addLabels({
owner,
repo,
issue_number: ${{steps.release-pr.outputs.pr}},
labels: ['autorelease: pending']
});
console.log(`Tagged ${{steps.release-pr.outputs.pr}}`)