feat: 支持k8s shell任务出错时,上报容器日志 #210 #208 #104
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
# Trigger building on pull request event | |
name: Build | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
- 'docs/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Set up Node JS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Build with Gradle | |
run: ./gradlew build |