Better VM manager + Manage VM networks #414
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: Build | |
| # on push all branches and release | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| release: | |
| types: | |
| - published | |
| jobs: | |
| run: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| working-directory: ./frontend | |
| run: npm install && npm install -g @quasar/cli | |
| - name: Build | |
| run: python3 Build.py | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: WebUI-build | |
| path: ./backend | |
| - name: Upload to release | |
| if: github.event_name == 'release' | |
| uses: svenstaro/upload-release-action@2.7.0 | |
| with: | |
| repo_token: ${{ secrets.TOKEN }} | |
| file: WebUI-build.zip | |
| tag: ${{ github.ref }} | |
| file_glob: true | |