summaryrefslogtreewikicommitdiff
path: root/.github/workflows/beta.yml
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2021-12-20 18:22:23 -0500
committerGitHub <noreply@github.com>2021-12-20 18:22:23 -0500
commit2ab0b2bbb604db246dcc46209ef780ba44d7aa69 (patch)
treed2513dbf0e511d66aaa8361e330ccb8bdf086bea /.github/workflows/beta.yml
parent1.3.0 full release (diff)
parentAdd Workflows (diff)
downloadkenshinshideandseek-2ab0b2bbb604db246dcc46209ef780ba44d7aa69.tar.gz
kenshinshideandseek-2ab0b2bbb604db246dcc46209ef780ba44d7aa69.tar.bz2
kenshinshideandseek-2ab0b2bbb604db246dcc46209ef780ba44d7aa69.zip
Merge pull request #12 from tylermurphy534/1.3.1
1.3.1
Diffstat (limited to '.github/workflows/beta.yml')
-rw-r--r--.github/workflows/beta.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml
new file mode 100644
index 0000000..4220d3c
--- /dev/null
+++ b/.github/workflows/beta.yml
@@ -0,0 +1,30 @@
+name: Beta
+
+on:
+ release:
+ types: [ 1.3.1 ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ packages: write
+
+ steps:
+ - name: Checkout branch
+ uses: actions/checkout@v2
+
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+
+ - name: Build with Maven
+ run: mvn -B package --file pom.xml
+
+ - name: Publish to GitHub Packages Apache Maven
+ run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
+ env:
+ GITHUB_TOKEN: ${{ github.token }}