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 ec41419 commit 73b30d8Copy full SHA for 73b30d8
action.yml
@@ -84,6 +84,9 @@ outputs:
84
description: A folder containing the built .geode file(s)
85
value: ${{ steps.build.outputs.output }}
86
87
+secrets:
88
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
+
90
runs:
91
using: composite
92
steps:
@@ -220,6 +223,8 @@ runs:
220
223
shell: bash
221
224
run: |
222
225
export CLI_PROFILE="${{ github.workspace }}/cli-profile"
226
+ export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
227
+ echo "Gh token len: ${#GITHUB_TOKEN}"
228
# for windows
229
mkdir -p "$CLI_PROFILE/geode/mods"
230
# for mac
0 commit comments