-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
920 additions
and
1,409 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
# Nix | ||
- uses: cachix/install-nix-action@v13 | ||
- uses: cachix/install-nix-action@v16 | ||
with: | ||
nix_path: nixpkgs=channel:nixos-unstable | ||
|
||
|
@@ -55,7 +55,7 @@ jobs: | |
TAG_NAME: ${{ steps.package-version.outputs.current-version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- run: mkdir compressed | ||
|
||
# Download artifacts | ||
|
@@ -82,7 +82,7 @@ jobs: | |
uses: martinbeentjes/[email protected] | ||
|
||
# Create release | ||
- uses: softprops/action-gh-release@v0.1.7 | ||
- uses: softprops/action-gh-release@v1 | ||
id: create_release | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -91,7 +91,6 @@ jobs: | |
name: "v${{ steps.package-version.outputs.current-version }}" | ||
body: "See the assets to download this version and install." | ||
draft: true | ||
prerelease: true | ||
|
||
files: | | ||
compressed/diffuse-web.zip | ||
|
@@ -112,51 +111,54 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: extractions/setup-just@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# OS | ||
- name: install linux dependencies | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt update && sudo apt install libwebkit2gtk-4.0-dev \ | ||
build-essential \ | ||
curl \ | ||
wget \ | ||
libssl-dev \ | ||
libgtk-3-dev \ | ||
libgtksourceview-3.0-dev \ | ||
squashfs-tools | ||
sudo apt-get update | ||
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf | ||
# Rust | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
|
||
- uses: Swatinem/rust-cache@v1 | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
working-directory: src-tauri | ||
workspaces: "src-tauri -> target" | ||
|
||
# Download artifacts | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: build | ||
path: build/ | ||
|
||
# Install Tauri CLI | ||
- run: just install-tauri-cli | ||
|
||
# Make a build | ||
- run: cargo build --no-default-features # --release | ||
working-directory: src-tauri | ||
- run: just tauri-build | ||
if: matrix.os != 'macos-latest' | ||
|
||
# Upload artifacts (MacOS) | ||
- uses: softprops/[email protected] | ||
- run: just tauri-build-universal | ||
if: matrix.os == 'macos-latest' | ||
|
||
# Upload artifacts | ||
- uses: softprops/action-gh-release@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
tag_name: "${{ needs.create-release.outputs.TAG_NAME }}" | ||
draft: true | ||
prerelease: true | ||
|
||
files: | | ||
src-tauri/target/debug/bundle/appimage/*.AppImage | ||
src-tauri/target/debug/bundle/deb/*.deb | ||
src-tauri/target/debug/bundle/dmg/*.dmg | ||
src-tauri/target/debug/bundle/macos/*.app | ||
src-tauri/target/release/bundle/appimage/*.AppImage | ||
src-tauri/target/release/bundle/deb/*.deb | ||
src-tauri/target/release/bundle/dmg/*.dmg | ||
src-tauri/target/release/bundle/msi/*.msi | ||
src-tauri/target/universal-apple-darwin/release/bundle/dmg/*.dmg |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Changelog | ||
|
||
## 3.2.0 | ||
|
||
Native builds with [Tauri](https://tauri.app/). | ||
|
||
|
||
## 3.1.1 | ||
|
||
Fixes Google Drive CORS issue. | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "Diffuse", | ||
"description": "A music player that connects to your cloud/distributed storage", | ||
"version": "3.1.1", | ||
"version": "3.2.0", | ||
"author": "Steven Vandevelde <[email protected]>", | ||
"homepage": "https://diffuse.sh", | ||
"repository": "github:icidasset/diffuse", | ||
|
Oops, something went wrong.