kenshinshideandseek/.github/workflows/beta.yml

38 lines
780 B
YAML
Raw Normal View History

2021-12-21 00:29:22 +00:00
name: Beta
2021-12-20 23:20:57 +00:00
on:
2021-12-20 23:29:03 +00:00
push:
2022-10-20 00:05:56 +00:00
branches-ignore: [ main ]
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:26:03 +00:00
run: |
2021-12-21 00:24:24 +00:00
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 artifacts
2021-12-21 00:24:24 +00:00
uses: actions/upload-artifact@v2
with:
2021-12-21 00:29:22 +00:00
name: artifacts-beta
2021-12-21 00:24:24 +00:00
path: staging