diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 5c00f45..e8e98d2 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -17,16 +17,21 @@ jobs: id: get_version uses: https://github.com/battila7/get-version-action@v2 - # Install Node.js and build CSS + packs - name: Setup Node.js uses: https://github.com/actions/setup-node@v3 with: node-version: "20" - - name: Install dependencies and build - run: | - npm ci - npm run build:full + - name: Install dependencies + run: npm ci + + # Génération à la volée des compendiums (packs-src/ → packs/ LevelDB) + - name: Compile compendium packs + run: npm run pack:compile + + # Compilation CSS (LESS → css/) et bundle JavaScript (src/ → dist/) + - name: Build CSS and JavaScript + run: npm run build # Substitute the Manifest and Download URLs in the system.json - name: Substitute Manifest and Download Links For Versioned Ones