We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdcc247 commit 0c617b8Copy full SHA for 0c617b8
.github/workflows/build-and-deploy.yml
@@ -14,10 +14,18 @@ jobs:
14
name: Test
15
uses: ./.github/workflows/test.yml
16
secrets: inherit
17
- deploy:
+ deploy-artifacts:
18
name: Deploy Artifacts
19
needs: [build, test]
20
uses: ./.github/workflows/deploy-artifacts.yml
21
with:
22
should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }}
23
24
+ publish-plugins:
25
+ name: Publish Plugins
26
+ needs: [deploy-artifacts]
27
+ uses: ./.github/workflows/publish-plugins.yml
28
+ with:
29
+ should-publish-plugins: ${{ needs.build.outputs.should-deploy-artifacts }}
30
+ project-version: ${{ needs.deploy-artifacts.outputs.project-version }}
31
+ secrets: inherit
0 commit comments