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