Rollback changes, keep workflow

This commit is contained in:
kristoffer 2023-04-30 23:04:52 +02:00
parent c6ba480e04
commit 47e5ebbdf5
No known key found for this signature in database
GPG Key ID: A14590146063A150
4 changed files with 77 additions and 1 deletions

54
.github/workflows/create-release.yaml vendored Normal file
View File

@ -0,0 +1,54 @@
name: Create Release
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+*'
jobs:
build-and-release:
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: Extract artifact ID and version from pom.xml
run: |
ARTIFACT_ID=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.artifactId}' --non-recursive exec:exec)
VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
echo "ARTIFACT_ID=$ARTIFACT_ID" >> $GITHUB_ENV
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build with Maven
run: mvn clean install --settings settings.xml --batch-mode -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- Add a summary of changes or refer to the changelog.
draft: false
prerelease: false
- name: Upload JAR Artifact to Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/${{ env.ARTIFACT_ID }}-${{ env.VERSION }}.jar
asset_name: ${{ env.ARTIFACT_ID }}-${{ env.VERSION }}.jar
asset_content_type: application/java-archive

1
.mvn/maven.config Normal file
View File

@ -0,0 +1 @@
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true

View File

@ -7,7 +7,7 @@
<groupId>me.SuperRonanCraft</groupId>
<artifactId>BetterRTP</artifactId>
<packaging>jar</packaging>
<version>3.6.8-2</version>
<version>3.6.8-4</version>
<!-- Upload patches to https://repo.ronanplugins.com/#/ -->

21
settings.xml Normal file
View File

@ -0,0 +1,21 @@
<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
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ronanplugins-private</id>
<username>${env.MAVEN_REPO_USERNAME}</username>
<password>${env.MAVEN_REPO_PASSWORD}</password>
</server>
</servers>
<mirrors>
<mirror>
<id>mirror-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
<mirrorOf>http://nexus.hc.to/content/repositories/pub_releases</mirrorOf>
</mirror>
<!-- Add more mirrors if necessary -->
</mirrors>
</settings>