This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
多了一個 " #38
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
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get github short hash | |
id: github_short_hash | |
run: echo "::set-output name=result::$(git rev-parse --short "${{ github.sha }}")" | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
.gradle | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'build.gradle.kts') }} | |
- name: Build with Gradle | |
run: | | |
chmod +x gradlew | |
./gradlew build | |
timeout-minutes: 10 | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Birthday-Plugin | |
path: ${{ github.workspace }}/build/libs |