Skip to content

Commit

Permalink
Add manual deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bcopy committed Feb 5, 2024
1 parent 5182f2e commit 907f7c1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy package to GitHub Packages
on: workflow_dispatch
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 907f7c1

Please sign in to comment.