Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
Action for publishing and pushing to yolean.github.io
  • Loading branch information
NiklasJonsson6 authored Sep 8, 2023
1 parent f9a356c commit 3e1a124
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish package to the Maven Central Repository
on:
push
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Publish package
run: mvn --batch-mode deploy
- name: Push to Yolean mavenrepo
uses: cpina/[email protected]
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
with:
source-directory: 'snapshots'
destination-github-username: 'Yolean'
destination-repository-name: 'yolean.github.io'
target-branch: mavenrepo

0 comments on commit 3e1a124

Please sign in to comment.