Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

少了一個 "

少了一個 " #40

Workflow file for this run

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