Skip to content

Commit

Permalink
Merge pull request #126 from jack-app/CD-build
Browse files Browse the repository at this point in the history
定期ビルド
  • Loading branch information
yutteee authored Jul 6, 2024
2 parents b38fecd + 25ecfae commit 4f2d51d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ワークフロー名
name: Production_Build
on:
schedule:
# 定期実行する時間
- cron: '0 */6 * * *'

jobs:
build:
runs-on: ubuntu-latest
env:
DEPLOY_HOOK_URL: ${{secrets.DEPLOY_HOOK_URL}}
steps:
- name: Run script
run: |
curl -X POST $DEPLOY_HOOK_URL

0 comments on commit 4f2d51d

Please sign in to comment.