mirror of
https://github.com/CarmJos/MineSQL.git
synced 2026-06-04 16:43:03 +08:00
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
# 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:
|
|
pull_request:
|
|
push:
|
|
paths-ignore:
|
|
- ".github/**"
|
|
- "README.md"
|
|
- "LICENCE"
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: "Set up JDK"
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'adopt'
|
|
- name: "Package"
|
|
run: mvn -B package --file pom.xml -Dgpg.skip
|
|
|
|
- name: "Upload artifacts"
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: artifacts
|
|
path: "**/target/"
|
|
retention-days: 5
|
|
include-hidden-files: true
|
|
|
|
- name: "Upload assets"
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: assets
|
|
path: ".asset/"
|
|
retention-days: 5
|
|
include-hidden-files: true |