We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc0ef94 commit b1f7f04Copy full SHA for b1f7f04
1 file changed
.github/workflows/schedule.yml
@@ -16,12 +16,15 @@ 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: |
- echo ${{ secrets.GH_AUTH }} > ./publish/secrets/github_auth
- echo ${{ secrets.BOT_TOKEN }} > ./publish/secrets/bot_token
26
+ echo "${{ secrets.GH_AUTH }}" > /publish/secrets/github_auth
27
+ echo "${{ secrets.BOT_TOKEN }}" > /publish/secrets/bot_token
28
29
- name: Start program and update data
30
0 commit comments