Skip to content

build(deps): bump guava from 31.0.1-jre to 32.0.0-jre #85

build(deps): bump guava from 31.0.1-jre to 32.0.0-jre

build(deps): bump guava from 31.0.1-jre to 32.0.0-jre #85

Workflow file for this run

# 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@v2
with:
name: artifacts
path: "**/target/"
- name: "Upload assets"
uses: actions/upload-artifact@v2
with:
name: assets
path: ".asset/"