
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GitHubActionsで後続のジョブだけを実行する方法 - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHubActionsで後続のジョブだけを実行する方法 - Qiita
name: ci on: push: branches: [ develop ] workflow_dispatch: jobs: test: runs-on: ubuntu-latest st... name: ci on: push: branches: [ develop ] workflow_dispatch: jobs: test: runs-on: ubuntu-latest steps: - name: test-step#1 run: echo This is test#1. - name: test-step#2 run: echo This is test#2. - name: test-step#3 run: echo This is test#3. deploy: runs-on: ubuntu-latest needs: test steps: - name: deploy-step#1 run: echo This is deploy#1. - name: deploy-step#2 run: echo This is deploy#2. - name: de