Skip to content

Commit

Permalink
release.yaml - support weekly run for i686 package
Browse files Browse the repository at this point in the history
  • Loading branch information
jwrober committed Jan 1, 2024
1 parent 4769dc4 commit 0504d51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Release
on:
release:
types: [published]
schedule:
- cron: "0 5 * * MON"
workflow_dispatch: {}

jobs:
Expand Down Expand Up @@ -74,7 +76,7 @@ jobs:
defaults:
run:
shell: msys2 {0}
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
if: github.event_name == 'release' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 0504d51

Please sign in to comment.