Skip to content

Commit

Permalink
Follow SemVer specification, downgrade to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
larryTheCoder committed Dec 27, 2022
1 parent 1506935 commit 7fc32fe
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
java-version: 17
distribution: microsoft
- name: Build ProxyTransport
run: mvn -B install --file pom.xml
run: mvn -B install -q --file pom.xml
- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/Registry.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish package to the Maven Repository
name: Publish package
on:
push:
branches: ['master']
Expand All @@ -11,8 +11,13 @@ jobs:
with:
java-version: '17'
java-distribution: 'adopt'
- name: Publish client
run: mvn -T 4 --batch-mode deploy -q -s settings.xml
- name: Publish and package client
run: mvn -T 4 --batch-mode deploy package -q -s settings.xml
env:
REPO_USERNAME: github-deploy
REPO_PASSWORD: ${{ secrets.DEPLOY_TOKEN }}
REPO_PASSWORD: ${{ secrets.DEPLOY_TOKEN }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ProxyTransport
path: target/ProxyTransport.jar
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.nethergames.proxytransport</groupId>
<artifactId>proxy-transport</artifactId>
<version>1.5</version>
<version>1.4.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 7fc32fe

Please sign in to comment.