Skip to content

Commit

Permalink
ci: リリース CI の実行条件を schedule に変更 (#181)
Browse files Browse the repository at this point in the history
* ci: Use schedule

* ci: Revert to run on push tags
  • Loading branch information
MikuroXina authored May 13, 2022
1 parent a1d4a1c commit 644c25a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
name: Release
on:
push:
branches:
- main
tags:
- "v*.*.*"
schedule:
# +---------------- minute (0 - 59)
# | +------------- hour (0 - 23)
# | | +---------- day of month (1 - 31)
# | | | +------- month (1 - 12)
# | | | | +---- day of week (0 - 6) (Sunday=0 or 7)
# | | | | |
- cron: "0 3 * * 6" # At 12:00 on Saturday (JST)

jobs:
release:
Expand Down

0 comments on commit 644c25a

Please sign in to comment.