kenshinshideandseek/.github/workflows/beta.yml

38 lines
783 B
YAML
Raw Normal View History

2021-12-21 00:24:24 +00:00
name: Release
2021-12-20 23:20:57 +00:00
on:
2021-12-20 23:29:03 +00:00
push:
branches: [ beta ]
2021-12-20 23:20:57 +00:00
jobs:
build:
runs-on: ubuntu-latest
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
2021-12-21 00:24:24 +00:00
run:
mvn -B package --file pom.xml
mkdir staging && cp target/*.jar staging
2021-12-20 23:20:57 +00:00
2021-12-21 00:24:24 +00:00
- name: Set up a cache for maven
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Upload artificats
uses: actions/upload-artifact@v2
with:
name: github-actions-artifact
path: staging