Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,22 +141,22 @@ jobs:
run: pnpm run generate

- name: Set up Python
if: github.event_name != 'pull_request'
if: env.REGISTRY == '' && github.event_name != 'pull_request'
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install GitPython
if: github.event_name != 'pull_request'
if: env.REGISTRY == '' && github.event_name != 'pull_request'
run: pip install gitpython

- name: Generate CHANGELOG.json
if: github.event_name != 'pull_request'
if: env.REGISTRY == '' && github.event_name != 'pull_request'
run: |
python3 .github/scripts/generate_changelog.py -p . -f ./frontend/exported/CHANGELOG.json

- name: Upload frontend build
if: github.event_name != 'pull_request'
if: env.REGISTRY == '' && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: frontend-build
Expand All @@ -180,6 +180,7 @@ jobs:
fetch-depth: 0

- name: Download frontend build
if: env.REGISTRY == ''
uses: actions/download-artifact@v4
with:
name: frontend-build
Expand Down Expand Up @@ -277,6 +278,7 @@ jobs:
fetch-depth: 0

- name: Download frontend build
if: env.REGISTRY == ''
uses: actions/download-artifact@v4
with:
name: frontend-build
Expand Down
33 changes: 17 additions & 16 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@pinia/nuxt": "^0.11.3",
"@vueuse/core": "^14.1.0",
"@vueuse/nuxt": "^14.1.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"cronstrue": "^3.9.0",
"floating-vue": "^5.2.2",
"hls.js": "^1.6.15",
Expand All @@ -35,7 +35,7 @@
"nuxt": "^4.2.2",
"pinia": "^3.0.4",
"plyr": "^3.8.3",
"vue": "^3.5.25",
"vue": "^3.5.26",
"vue-router": "^4.6.4",
"vue-toastification": "2.0.0-rc.5",
"vuedraggable": "^4.1.0"
Expand All @@ -49,12 +49,12 @@
"devDependencies": {
"@nuxt/eslint": "^1.12.1",
"@nuxt/eslint-config": "^1.12.1",
"@typescript-eslint/parser": "^8.50.0",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.1.8"
"vue-tsc": "^3.2.1"
},
"eslintIgnore": [
".gitignore"
Expand Down
Loading