diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..78c8ebf3
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,40 @@
+# This workflow will build a Java project with Maven
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
+
+name: Execute build
+
+on:
+ push:
+ branches:
+ - master
+ - feature/**
+ - hotfix/**
+ - bugfix/**
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - 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 install --file pom.xml
+ - uses: actions/setup-ruby@v1
+ - name: Send Webhook Notification
+ if: always()
+ env:
+ JOB_STATUS: ${{ job.status }}
+ WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
+ HOOK_OS_NAME: ${{ runner.os }}
+ WORKFLOW_NAME: ${{ github.workflow }}
+ run: |
+ git clone https://github.com/DiscordHooks/github-actions-discord-webhook.git webhook
+ bash webhook/send.sh $JOB_STATUS $WEBHOOK_URL
+ shell: bash
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 00000000..7a06b9ae
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,19 @@
+name: Publish package to GitHub Packages
+on:
+ release:
+ types: [created]
+jobs:
+ publish:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ persist-credentials: false
+ - name: Set up Java for publishing to GitHub Packages
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: Publish to GitHub Packages
+ run: mvn --file pom.xml -B deploy -Dmaven.wagon.http.pool=false
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/pom.xml b/pom.xml
index 6bd75891..97376a87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,6 +24,7 @@
https://maven.pkg.github.com/Sheldan/abstracto-templates
+ scm:git:git@github.com:Sheldan/abstracto-templates.git
@@ -38,4 +39,15 @@
yyyy/MM/dd HH:mm
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-release-plugin
+
+
+
+
\ No newline at end of file