-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (38 loc) · 1.28 KB
/
push-main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# mainブランチ以外へのPush時に走る処理
name: push
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
jobs:
# 最初にworkflowファイル全体をチェックする
check-workflows:
permissions:
contents: read
uses: ./.github/workflows/check-workflows.yml
# その後、デプロイする
# ただし、コミットメッセージに[No Deploy]が含まれている場合や
# dependabotが作成したPull Requestをマージしたときはデプロイしない
# ただしこのワークフローの実行にはGitHubリポジトリとAWS環境のOpen ID Connect等による接続が確立している必要がある
deploy:
needs: check-workflows
if: ${{ !contains(github.event.head_commit.message, '[No Deploy]') && !contains(toJson(github.event.commits.*.author.name), 'dependabot') }}
permissions:
id-token: write
contents: read
secrets: inherit
uses: ./.github/workflows/deploy.yml
# サーバアプリケーションのビルドする
build-server-app:
needs: check-workflows
permissions:
contents: read
uses: ./.github/workflows/server-app.yml
with:
run_tests: false