diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c01d318..c96506d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: 'publish' +name: "publish" # This will trigger the action on each push to the `release` branch. on: @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [macos-latest, ubuntu-20.04, windows-latest] + platform: [macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -27,12 +27,6 @@ jobs: - name: install Rust stable uses: dtolnay/rust-toolchain@stable - - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-20.04' - run: | - sudo apt-get update - sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf - - name: install frontend dependencies run: yarn install # change this to npm or pnpm depending on which one you use @@ -41,7 +35,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version - releaseName: 'App v__VERSION__' - releaseBody: 'See the assets to download this version and install.' + releaseName: "App v__VERSION__" + releaseBody: "See the assets to download this version and install." releaseDraft: true prerelease: false diff --git a/package.json b/package.json index 0f21dc9..27c70a2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "photomint", "private": true, - "version": "0.0.0", + "version": "0.1.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 9fb479a..59f2d3e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "photomint" -version = "0.0.0" +version = "0.1.0" description = "Simple Photo Editor" authors = ["tans"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0513c85..345efd9 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "PhotoMint", - "version": "0.1.0", + "version": "0.1.1", "identifier": "xin.minapp.mint", "build": { "beforeDevCommand": "npm run dev",