We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c4a279 commit ee3f67fCopy full SHA for ee3f67f
1 file changed
.github/workflows/release.yml
@@ -21,17 +21,14 @@ jobs:
21
22
# specify the environment variables used by the packager, matching the secrets from the project on GitHub
23
env:
24
- CF_API_KEY: ${{ secrets.CF_API_KEY }}
25
- WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
26
- WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
27
- GITHUB_OAUTH: ${{ secrets.GH_TOKEN }}
+ GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
28
29
# "steps" holds a list of all the steps needed to package and release our AddOn
30
steps:
31
32
# we first have to clone the AddOn project, this is a required step
33
- name: Clone project
34
- uses: actions/checkout@v3
+ uses: actions/checkout@v6
35
with:
36
fetch-depth: 0 # gets git history for changelogs
37
0 commit comments