1
mirror of https://github.com/carm-outsource/TimeReward.git synced 2024-09-19 19:25:49 +00:00
TimeReward/.github/workflows/maven.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

2022-02-27 14:07:22 +00:00
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build & Tests
on:
# 支持手动触发构建
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Set up JDK"
uses: actions/setup-java@v2
with:
2022-03-02 12:26:26 +00:00
java-version: '8'
2022-02-27 14:07:22 +00:00
distribution: 'adopt'
cache: maven
server-id: github
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
2022-02-28 11:43:13 +00:00
2022-02-27 14:07:22 +00:00
- name: "Package"
run: mvn -B package --file pom.xml -Dmaven.javadoc.skip=true
env:
MAVEN_USERNAME: ${{ github.repository_owner }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
2022-02-28 11:43:13 +00:00
- name: "Target Staging"
run: |
mkdir artifacts
cp -vrf target/ artifacts/target/
cp -vrf asset/*.jar artifacts
2022-02-27 14:07:22 +00:00
- name: "Upload artifact"
uses: actions/upload-artifact@v2
with:
name: Artifact
2022-02-28 11:43:13 +00:00
path: artifacts