|
1 | | -name: manual release |
2 | | - |
3 | | -on: |
4 | | - workflow_dispatch: |
5 | | - |
6 | | -jobs: |
7 | | - release: |
8 | | - runs-on: ubuntu-latest |
9 | | - steps: |
10 | | - - uses: actions/checkout@v3 |
11 | | - with: |
12 | | - token: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} |
13 | | - - name: Conventional Changelog Action |
14 | | - id: changelog |
15 | | - uses: TriPSs/conventional-changelog-action@d360fad3a42feca6462f72c97c165d60a02d4bf2 |
16 | | - # overriding some of the basic behaviors to just get the changelog |
17 | | - with: |
18 | | - git-user-name: svc-cli-bot |
19 | | - git-user-email: svc_cli_bot@salesforce.com |
20 | | - github-token: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} |
21 | | - output-file: false |
22 | | - # always do the release, even if there are no semantic commits |
23 | | - skip-on-empty: false |
24 | | - tag-prefix: '' |
25 | | - - uses: notiz-dev/github-action-json-property@2192e246737701f108a4571462b76c75e7376216 |
26 | | - id: packageVersion |
27 | | - with: |
28 | | - path: 'package.json' |
29 | | - prop_path: 'version' |
30 | | - - name: Create Github Release |
31 | | - uses: actions/create-release@v1 |
32 | | - env: |
33 | | - GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} |
34 | | - with: |
35 | | - tag_name: ${{ steps.packageVersion.outputs.prop }} |
36 | | - release_name: ${{ steps.packageVersion.outputs.prop }} |
| 1 | +#name: manual release |
| 2 | +# |
| 3 | +#on: |
| 4 | +# workflow_dispatch: |
| 5 | +# |
| 6 | +#jobs: |
| 7 | +# release: |
| 8 | +# runs-on: ubuntu-latest |
| 9 | +# steps: |
| 10 | +# - uses: actions/checkout@v3 |
| 11 | +# with: |
| 12 | +# token: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} |
| 13 | +# - name: Conventional Changelog Action |
| 14 | +# id: changelog |
| 15 | +# uses: TriPSs/conventional-changelog-action@d360fad3a42feca6462f72c97c165d60a02d4bf2 |
| 16 | +# # overriding some of the basic behaviors to just get the changelog |
| 17 | +# with: |
| 18 | +# git-user-name: svc-cli-bot |
| 19 | +# git-user-email: svc_cli_bot@salesforce.com |
| 20 | +# github-token: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} |
| 21 | +# output-file: false |
| 22 | +# # always do the release, even if there are no semantic commits |
| 23 | +# skip-on-empty: false |
| 24 | +# tag-prefix: '' |
| 25 | +# - uses: notiz-dev/github-action-json-property@2192e246737701f108a4571462b76c75e7376216 |
| 26 | +# id: packageVersion |
| 27 | +# with: |
| 28 | +# path: 'package.json' |
| 29 | +# prop_path: 'version' |
| 30 | +# - name: Create Github Release |
| 31 | +# uses: actions/create-release@v1 |
| 32 | +# env: |
| 33 | +# GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} |
| 34 | +# with: |
| 35 | +# tag_name: ${{ steps.packageVersion.outputs.prop }} |
| 36 | +# release_name: ${{ steps.packageVersion.outputs.prop }} |
0 commit comments