Skip to content

Commit

Permalink
fix: signing key must be used on 'schedule' events (#15)
Browse files Browse the repository at this point in the history
Typo, had `scheduled` instead of `schedule`.
  • Loading branch information
bsherman authored Jul 12, 2024
1 parent 78555fe commit 941e10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/1728152?s=200&v=4
- name: Retrieve Signing Key
if: github.event_name == 'scheduled' || github.event_name == 'workflow_dispatch' || github.event_name == 'merge_group'
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'merge_group'
shell: bash
run: |
mkdir -p certs
Expand Down

0 comments on commit 941e10e

Please sign in to comment.