# 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: Maven on: # 支持手动触发构建 workflow_dispatch: release: # 创建release的时候触发 types: [ published ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' cache: maven - name: run Maven run: mvn -B deploy --file pom.xml with: server-id: github # Nexus用户名环境变量 server-username: ${{ secrets.MAVEN_USERNAME }} # Nexus密码环境变量 server-password: ${{ secrets.GITHUB_TOKEN }} - run: mkdir staging && cp target/*.jar staging - uses: actions/upload-artifact@v2 with: name: artifact path: staging