diff --git a/.github/workflows/github-ci.yml b/.github/workflows/github-ci.yml new file mode 100644 index 0000000..0093fcb --- /dev/null +++ b/.github/workflows/github-ci.yml @@ -0,0 +1,66 @@ +name: 'publish' + +on: + push: + branches: + - release + +# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. + +jobs: + publish-tauri: + permissions: + contents: write + strategy: + fail-fast: false + matrix: + include: + - platform: 'macos-latest' # for Arm based macs (M1 and above). + args: '--target aarch64-apple-darwin' + - platform: 'macos-latest' # for Intel based macs. + args: '--target x86_64-apple-darwin' + - platform: 'ubuntu-22.04' + args: '' + - platform: 'windows-latest' + args: '' + + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v4 + + - name: Set up pnpm + uses: pnpm/action-setup@v3 + with: + version: 9.0.5 + + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: 20.10.0 + cache: 'pnpm' + + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable + with: + targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} + + - name: install dependencies (ubuntu only) + if: matrix.platform == 'ubuntu-22.04' + run: | + sudo apt-get update + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + + - name: install frontend dependencies + run: pnpm install + + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: v__VERSION__ + releaseName: 'Rename Photos v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: false + prerelease: false + includeUpdaterJson: false + args: ${{ matrix.args }} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index d786952..ec2a6b7 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "Rename Photos", - "version": "0.0.0", + "version": "0.0.1", "identifier": "fun.armantang", "build": { "beforeDevCommand": "pnpm dev", @@ -30,7 +30,7 @@ "bundle": { "active": true, "targets": "all", - "category": "Utility", + "category": "Utilities", "shortDescription": "A cross-platform desktop-app for renaming photos using EXIF data", "icon": [ "icons/32x32.png",