Skip to content

Delete nodes.json

Delete nodes.json #401

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: gradle build
- name: Generate Timestamped Filename
id: timestamp
run: echo "TIMESTAMP=$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
- name: Upload JAR as Artifact
uses: actions/upload-artifact@v4
with:
pattern: QAPI_Build
path: build/libs/QAPI3-1.0-SNAPSHOT.jar