1
mirror of https://github.com/CarmJos/UserPrefix.git synced 2024-09-20 04:25:46 +00:00
UserPrefix/.github/workflows/maven.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

2021-08-25 06:17:52 +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
2021-08-25 06:17:52 +00:00
on:
2021-10-07 13:49:39 +00:00
# 支持手动触发构建
workflow_dispatch:
push:
2021-08-25 06:17:52 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-09-17 11:47:51 +00:00
- uses: actions/checkout@v2
- name: "Set up JDK"
2021-09-17 11:47:51 +00:00
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
server-id: github
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
- name: "Package"
run: mvn -B package --file pom.xml
env:
MAVEN_USERNAME: ${{ github.repository_owner }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: "Target Stage"
run: mkdir staging && cp target/*.jar staging
- name: "Upload artifact"
uses: actions/upload-artifact@v2
2021-09-17 11:47:51 +00:00
with:
name: Artifact
2021-10-07 13:49:39 +00:00
path: staging