Skip to content

Commit 35379b6

Browse files
fixed action
1 parent b1f7f04 commit 35379b6

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/schedule.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,13 @@ jobs:
1616

1717
- name: Build bot
1818
run: dotnet publish
19-
20-
- name: show cwd
21-
run: pwd
2219

2320
- name: Create secrets files
2421
if: ${{ success() }}
2522
run: |
26-
echo "${{ secrets.GH_AUTH }}" > /publish/secrets/github_auth
27-
echo "${{ secrets.BOT_TOKEN }}" > /publish/secrets/bot_token
23+
mkdir -p ./publish/secrets
24+
echo "${{ secrets.GH_AUTH }}" > ./publish/secrets/github_auth
25+
echo "${{ secrets.BOT_TOKEN }}" > ./publish/secrets/bot_token
2826
2927
- name: Start program and update data
3028
if: ${{ success() }}

0 commit comments

Comments
 (0)