Merge pull request #714 from Edirom/dependabot/npm_and_yarn/swagger-u… #1091
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Artifacts | |
| on: push | |
| jobs: | |
| build: | |
| name: build the WeGA-WebApp xar package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '11' | |
| distribution: 'adopt' | |
| - name: Set up Node 26 | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 26 | |
| - name: Build with Ant | |
| run: ant clean xar | |
| - name: Archive xar package | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: xar package | |
| path: build/*.xar |