Skip to content

Commit

Permalink
use v3
Browse files Browse the repository at this point in the history
  • Loading branch information
cubewhy committed Jan 1, 2024
1 parent 1383ac9 commit db80732
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Java setup
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: 17
cache: "gradle"
- name: Set outputs
id: vars
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
# - name: Set outputs
# id: vars
# run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
- name: Build
run: chmod +x ./gradlew && ./gradlew build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: celestial
path: build/libs/celestial-*.jar

0 comments on commit db80732

Please sign in to comment.