We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3861d1c commit 269e0b3Copy full SHA for 269e0b3
.github/workflows/release.yaml
@@ -64,6 +64,8 @@ jobs:
64
- uses: actions/checkout@v3
65
with:
66
fetch-depth: 0
67
+ # Set token for pushing protected tag (vX.X.X).
68
+ token: ${{ secrets.RELEASE_GITHUB_PAT }}
69
70
# If the event that triggered the build was an annotated tag (which our
71
# tags are supposed to be), actions/checkout has a bug where the tag in
@@ -76,8 +78,8 @@ jobs:
76
78
# Configure git user name/email for creating annotated version tag.
77
79
- name: Setup git config
80
run: |
- git config user.name "GitHub Actions Bot"
- git config user.email ""
81
+ git config user.name "Coder CI"
82
+ git config user.email "dean+cdrci@coder.com"
83
84
- name: Create release tag and release notes
85
0 commit comments