File tree 3 files changed +17
-10
lines changed
3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
name : Release Drafter
2
3
3
4
on :
15
16
with :
16
17
publish : true
17
18
env :
18
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
19
+ GITHUB_TOKEN : ${{ secrets.RELEASE_DRAFTER_TOKEN }}
Original file line number Diff line number Diff line change @@ -91,15 +91,21 @@ updates:
91
91
92
92
# # :octocat: [cytopia](https://github.com/cytopia) GitHub Actions
93
93
94
- | Name | Description |
95
- |------------------------------|-------------|
96
- | [docker-tag-action] | Determines Docker tags based on git branch, commit or git tag |
97
- | [git-ref-matrix-action] | Create stringified JSON list of git refs to be used as a build matrix |
98
- | [shell-command-retry-action] | Retries shell commands to avoid failing pipelines due to network issues |
94
+ | Name | Description |
95
+ |----------------------------------|-------------|
96
+ | [docker-tag-action] | Determines Docker tags based on git branch, commit or git tag |
97
+ | [git-ref-matrix-action] | Create stringified JSON list of git refs to be used as a build matrix |
98
+ | [shell-command-retry-action] | Retries shell commands to avoid failing pipelines due to network issues |
99
+ | [upload-artifact-verify-action] | Upload artifact and verifies it by downloading it again |
100
+ | [upload-artifact-retry-action] | Retries `upload-artifact-verify-action` |
101
+ | [download-artifact-retry-action] | Download artifact with retry functionality |
99
102
100
103
[docker-tag-action] : https://github.com/cytopia/docker-tag-action
101
104
[git-ref-matrix-action] : https://github.com/cytopia/git-ref-matrix-action
102
105
[shell-command-retry-action] : https://github.com/cytopia/shell-command-retry-action
106
+ [upload-artifact-verify-action] : https://github.com/cytopia/upload-artifact-verify-action
107
+ [upload-artifact-retry-action] : https://github.com/cytopia/upload-artifact-retry-action
108
+ [download-artifact-retry-action] : https://github.com/cytopia/download-artifact-retry-action
103
109
104
110
105
111
# # :page_facing_up: License
Original file line number Diff line number Diff line change 57
57
###
58
58
### Output matrix
59
59
###
60
- echo "::set-output name= matrix:: []"
61
- echo "::set-output name= has_refs:: false"
60
+ echo "matrix= []" >> $GITHUB_OUTPUT
61
+ echo "has_refs= false" >> $GITHUB_OUTPUT
62
62
echo "matrix=[]"
63
63
echo "has_refs=false"
64
64
else
@@ -121,7 +121,7 @@ runs:
121
121
###
122
122
### Set final output for 'matrix'
123
123
###
124
- echo "::set-output name= matrix:: ${JSON}"
124
+ echo "matrix= ${JSON}" >> $GITHUB_OUTPUT
125
125
126
126
###
127
127
### Set 'has_refs'
@@ -131,7 +131,7 @@ runs:
131
131
else
132
132
HAS_REFS="true"
133
133
fi
134
- echo "::set-output name= has_refs:: ${HAS_REFS}"
134
+ echo "has_refs= ${HAS_REFS}" >> $GITHUB_OUTPUT
135
135
136
136
###
137
137
### Output matrix
You can’t perform that action at this time.
0 commit comments