Skip to content

Commit 0c617b8

Browse files
committed
Publish plugins to Gradle Plugin Portal
Closes gh-14
1 parent bdcc247 commit 0c617b8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,18 @@ jobs:
1414
name: Test
1515
uses: ./.github/workflows/test.yml
1616
secrets: inherit
17-
deploy:
17+
deploy-artifacts:
1818
name: Deploy Artifacts
1919
needs: [build, test]
2020
uses: ./.github/workflows/deploy-artifacts.yml
2121
with:
2222
should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }}
2323
secrets: inherit
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

Comments
 (0)