Skip to content

Commit

Permalink
1.0.40-UNSTABLE-R1
Browse files Browse the repository at this point in the history
  • Loading branch information
Strafbefehl committed Nov 12, 2023
1 parent ce6bbf3 commit da3b79b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy to GitHub Packages

on:
push:
branches:
- unstable

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'

- name: Build and deploy to GitHub Packages
run: |
mvn -B deploy --file pom.xml \
-Dmaven.repo.local=$HOME/.m2/repository \
-DaltDeploymentRepository=github::default::https://maven.pkg.github.com/Strafbefehl/Vinyl-Core
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}

0 comments on commit da3b79b

Please sign in to comment.