We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b70d5 commit 0687f5eCopy full SHA for 0687f5e
.github/workflows/tags.yaml
@@ -34,12 +34,15 @@ jobs:
34
persist-credentials: true
35
# By default, full tags get replaced by lightweight tags, unless we use ref: here to point to the explicit ref we are testing.
36
ref: ${{ github.ref }}
37
+ # But we want to be able to use the current .release-signers from the trunk branch
38
+ fetch-depth: 0
39
40
- id: key-imports
41
name: Import keys
42
shell: bash
43
run: |2
- allowed_signers_file=.release-signers
44
+ readonly allowed_signers_file=.release-signers
45
+ git remote set-head -a origin
46
declare -a GitHubSigningUsers=()
47
while read -r line; do
48
case "${line:-#}" in
0 commit comments