This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
Attempt simple github mvn hosting #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Maven Package | |
on: | |
push: | |
branches: | |
- main | |
- kendall/github-mvn-repo | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
# distribution: 'temurin' | |
# java-version: '17' # Adjust the Java version as needed | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Set up Maven settings | |
run: | | |
mkdir -p ~/.m2 | |
echo "<settings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd\"> | |
<servers> | |
<server> | |
<id>github</id> | |
<username>${{ github.actor }}</username> | |
<password>${{ secrets.GITHUB_TOKEN }}</password> | |
</server> | |
</servers> | |
</settings>" > ~/.m2/settings.xml | |
- name: Build and deploy | |
run: mvn deploy |