From 82fbf618d7e511a565b4f6dd60f046db40dcb473 Mon Sep 17 00:00:00 2001 From: Walter Oggioni Date: Sun, 24 Mar 2024 09:38:18 +0800 Subject: [PATCH] too --- .gitea/workflows/build.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 796aab6..c650829 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -3,12 +3,19 @@ on: push: branches: [ master ] jobs: + checkout: + runs-on: woryzen + container: + image: node:lts-alpine + steps: + - name: Check out repository code + uses: actions/checkout@v4 build: runs-on: woryzen container: image: eclipse-temurin:21-jdk-alpine steps: + - name: List directory + run: ls ${{ gitea.workspace }} - name: Build - run: | - ls ${{ gitea.workspace }} - ./gradlew build + run: ./gradlew build