Commit 11f3c54 1 parent 508eea1 commit 11f3c54 Copy full SHA for 11f3c54
File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,14 @@ jobs:
13
13
steps :
14
14
- name : Checkout Repository
15
15
uses : actions/checkout@v4
16
+ with :
17
+ token : ${{ secrets.ADFINISBOT_PAT }}
16
18
17
19
- name : Semantic Release
18
20
uses : go-semantic-release/action@v1
19
21
id : semrel
20
22
with :
21
- github-token : ${{ secrets.GITHUB_TOKEN }}
23
+ github-token : ${{ secrets.ADFINISBOT_PAT }}
22
24
allow-initial-development-versions : true
23
25
24
26
- run : pipx install poetry
@@ -37,15 +39,13 @@ jobs:
37
39
cmd : yq eval '(.appVersion = "${{ steps.semrel.outputs.version }}") | (.version = "{{ steps.semrel.outputs.version }}" )' --inplace ./charts/outdated/Chart.yaml
38
40
39
41
- name : Release Commit
40
- uses : EndBug/add-and-commit@v9
41
42
if : steps.semrel.outputs.version != ''
42
- with :
43
- message : " chore(release): ${{ steps.semrel.outputs.version }} [skip ci]"
44
- default_author : github_actions
45
- add : |
46
- api/pyproject.toml
47
- ember/package.json
48
- charts/outdated/Chart.yaml
43
+ run : |
44
+ git config user.name "Semantic Release"
45
+ git config user.email "[email protected] "
46
+ git add api/pyproject.toml ember/package.json charts/outdated/Chart.yaml
47
+ git commit -m "chore(release): ${{ steps.semrel.outputs.version }} [skip ci]"
48
+ git push
49
49
50
50
- name : Login to GitHub Container Registry
51
51
uses : docker/login-action@v3
You can’t perform that action at this time.
0 commit comments