-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Windows Builds * Added Release Step To Release Workflow * updated workflows * linux fix * added more supported file types * removed outdated code * added tags * Revert for tag filter code * Enabling devtools * Quick Push * added support for folders * removed comment * Added Drag And Drop * added macos workflows * new build script * new build script fix * added upload * added build step * fixed order * upload macos * new mac fix * merge branch --------- Co-authored-by: Kawsar Ahmed <[email protected]> Co-authored-by: Kirill Taran <[email protected]>
- Loading branch information
1 parent
1926ecd
commit 781bb20
Showing
10 changed files
with
477 additions
and
180 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
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 |
---|---|---|
|
@@ -77,3 +77,40 @@ jobs: | |
with: | ||
artifacts: './target/release/bundle/*.exe' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
release-macos: | ||
runs-on: macos-latest | ||
environment: Development | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '16.x' | ||
|
||
- name: Install dependencies (adjust as needed) | ||
run: brew install pkg-config openssl webkit2gtk gtk+3 | ||
|
||
- name: Fetch Node.js dependencies | ||
run: yarn | ||
|
||
- name: Build Release version | ||
run: yarn tauri build | ||
|
||
- name: Create Release Archive (adjust filename/compression if needed) | ||
run: | | ||
cd src-tauri/target/release/bundle | ||
zip -r ark-gallery-macOS.zip . | ||
- name: Release macOS App | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: './ark-gallery-macOS.zip' | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.