Googleスプレッドシートからカタログデータを取得してからビルド・デプロイ #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Googleスプレッドシートからカタログデータを取得してからビルド・デプロイ | |
on: | |
workflow_dispatch: | |
# 同じワークフローが進行中の場合、それを取り消す | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
fetch-catalogue: | |
uses: ./.github/workflows/fetch-catalogue.yaml | |
secrets: inherit | |
build-and-deploy: | |
needs: fetch-catalogue | |
uses: ./.github/workflows/build-and-deploy.yaml |