We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f7f04 commit 35379b6Copy full SHA for 35379b6
1 file changed
.github/workflows/schedule.yml
@@ -16,15 +16,13 @@ jobs:
16
17
- name: Build bot
18
run: dotnet publish
19
-
20
- - name: show cwd
21
- run: pwd
22
23
- name: Create secrets files
24
if: ${{ success() }}
25
run: |
26
- echo "${{ secrets.GH_AUTH }}" > /publish/secrets/github_auth
27
- echo "${{ secrets.BOT_TOKEN }}" > /publish/secrets/bot_token
+ mkdir -p ./publish/secrets
+ echo "${{ secrets.GH_AUTH }}" > ./publish/secrets/github_auth
+ echo "${{ secrets.BOT_TOKEN }}" > ./publish/secrets/bot_token
28
29
- name: Start program and update data
30
0 commit comments