Skip to content

Commit db8e0eb

Browse files
authored
Fix workflow trigger & public email used
1 parent 095819e commit db8e0eb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- main
88
paths:
9-
- 'ghtoken'
9+
- 'gh-token'
1010

1111
jobs:
1212
Update:
@@ -19,14 +19,16 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121
token: ${{ secrets.GITHUB_TOKEN }}
22+
2223
- name: "Calculate new SHA256 hash"
2324
run: |
2425
new_sha="$(shasum -a 256 gh-token | sed -r 's/gh-token/ghtoken/g')"
2526
sed -r "s/echo \"[0-9a-f]{64} ghtoken\"/echo \"$new_sha\"/g" -i README.md
27+
2628
- name: "Commit and push updates"
2729
uses: EndBug/add-and-commit@a3adef035a1381dcf888c90b847240e2ddb9e008
2830
with:
2931
author_name: Link-
30-
author_email: [email protected]
32+
author_email: '[email protected]'
3133
message: 'Updating sha256 hash value'
3234
add: 'README.md'

0 commit comments

Comments
 (0)