Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
echo " log_level: info" >> dist\user_data\config.yml

- name: create and upload portable zip
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: portable_basiliskLLM_${{ steps.get_variables.outputs.version_number }}_${{ runner.os }}_${{ steps.get_variables.outputs.arch }}
path: dist/*
if-no-files-found: error
retention-days: 30
- name: upload installer
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: setup_basiliskLLM_${{ steps.get_variables.outputs.version_number }}_${{ runner.os }}_${{ steps.get_variables.outputs.arch }}
path: output_setup/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
id: get_release_name
run: echo "release_name=$(echo ${{ inputs.ref_name }} | cut -c 2-) ($(date '+%Y-%m-%d'))" >> "$GITHUB_OUTPUT"
- name: download app portable
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: portable_basiliskLLM_*
path: portable_app
Expand All @@ -33,13 +33,13 @@ jobs:
echo "::endgroup::"
done
- name: download app installer
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: setup_basiliskLLM_*
path: installer
merge-multiple: true
- name: download POT file
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: basiliskLLM.pot
- name: create release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/localization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: build POT file
run: uv run setup.py extract_messages
- name: upload POT file
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: basiliskLLM.pot
path: basiliskLLM.pot
Expand All @@ -46,7 +46,7 @@ jobs:
- name: checkout repository
uses: actions/checkout@v5
- name: download translations template artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: basiliskLLM.pot
path: ./translations
Expand Down