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
21 changes: 9 additions & 12 deletions .github/workflows/tauri_app_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
strategy:
matrix:
os: [windows-latest,ubuntu-22.04]
os: [windows-latest]

runs-on: ${{ matrix.os }}

Expand All @@ -32,9 +32,12 @@ jobs:
cache-dependency-path: |
**/requirements*.txt

- name: Install FFmpeg
run: choco install ffmpeg -y

- name: Install Dependencies
run: |

pip install --only-binary :all: av==14.0.1
pip install -r requirements.txt

- name: Build Executable
Expand Down Expand Up @@ -136,8 +139,12 @@ jobs:
cache-dependency-path: |
**/requirements*.txt

- name: Install FFmpeg
run: choco install ffmpeg -y

- name: Install Dependencies
run: |
pip install --only-binary :all: av==14.0.1
pip install -r requirements.txt

- uses: sayyid5416/pyinstaller@v1
Expand Down Expand Up @@ -213,21 +220,11 @@ jobs:
name: bundle-${{ env.VERSION }}-Windows-pre
path: artifacts

- uses: actions/download-artifact@v4
with:
name: bundle-${{ env.VERSION }}-Linux
path: artifacts

- uses: actions/download-artifact@v4
with:
name: iib_app_cli_Windows
path: artifacts

- uses: actions/download-artifact@v4
with:
name: iib_app_cli_Linux
path: artifacts

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion vue/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Infinite Image Browsing",
"version": "1.5.1"
"version": "1.6.0"
},
"tauri": {
"allowlist": {
Expand Down
Loading