Skip to content

Commit

Permalink
Publish plugins to Gradle Plugin Portal
Browse files Browse the repository at this point in the history
Closes gh-14
  • Loading branch information
sjohnr committed Jan 25, 2024
1 parent bdcc247 commit 0c617b8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,18 @@ jobs:
name: Test
uses: ./.github/workflows/test.yml
secrets: inherit
deploy:
deploy-artifacts:
name: Deploy Artifacts
needs: [build, test]
uses: ./.github/workflows/deploy-artifacts.yml
with:
should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }}
secrets: inherit
publish-plugins:
name: Publish Plugins
needs: [deploy-artifacts]
uses: ./.github/workflows/publish-plugins.yml
with:
should-publish-plugins: ${{ needs.build.outputs.should-deploy-artifacts }}
project-version: ${{ needs.deploy-artifacts.outputs.project-version }}
secrets: inherit

0 comments on commit 0c617b8

Please sign in to comment.