Skip to content

Commit 29f87d5

Browse files
committed
ci(fix): update variable name
1 parent 8e47330 commit 29f87d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/check-pubdev-and-notify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check pub.dev and Notify Discord
33
on:
44
schedule:
55
# Check every 30 minutes
6-
- cron: '*/30 * * * *'
6+
- cron: "*/30 * * * *"
77
workflow_dispatch:
88
inputs:
99
force_check:
@@ -29,9 +29,9 @@ jobs:
2929

3030
- name: Check pub.dev and notify
3131
env:
32-
DISCORD_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
32+
DISCORD_RELEASE_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
3333
DISCORD_MAP: ${{ secrets.DISCORD_MAP }}
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
REPO_NAME: ${{ github.repository }}
3636
FORCE_CHECK: ${{ inputs.force_check }}
37-
run: python .github/scripts/check_pubdev_and_notify.py
37+
run: python .github/scripts/check_pubdev_and_notify.py

.github/workflows/notify-discord-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Notify Discord
3737
env:
38-
DISCORD_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
38+
DISCORD_RELEASE_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
3939
DISCORD_MAP: ${{ secrets.DISCORD_MAP }}
4040
RELEASE_VERSION: ${{ github.event.release.tag_name || inputs.tag_name }}
4141
RELEASE_NAME: ${{ github.event.release.name || inputs.release_name }}

0 commit comments

Comments
 (0)