Skip to content

Commit af663b2

Browse files
authored
Merge pull request #10 from pepabo/fix-error
Fix: change secrets to inputs in release action
2 parents 6f6e7a8 + 3612cc5 commit af663b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/release/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Release Action'
22
description: 'Reusable workflow for releasing with GoReleaser'
33

4-
secrets:
4+
inputs:
55
github_token:
66
description: 'GitHub token for authentication'
77
required: true
@@ -22,4 +22,4 @@ runs:
2222
version: latest
2323
args: release --clean
2424
env:
25-
GITHUB_TOKEN: ${{ secrets.github_token }}
25+
GITHUB_TOKEN: ${{ inputs.github_token }}

0 commit comments

Comments
 (0)