feat(gui): 重构部分GUI代码,补全缺失的获取接口 #199
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: | |
cache: maven | |
java-version: '8' | |
distribution: 'adopt' | |
server-id: github | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_TOKEN | |
- name: "Package" | |
run: mvn -B package --file pom.xml -Dmaven.javadoc.skip=true -Dgpg.skip | |
env: | |
MAVEN_USERNAME: ${{ github.repository_owner }} | |
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}} |