Skip to content

Commit

Permalink
rip ubuntu & update 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fun committed Feb 22, 2024
1 parent accd472 commit d444b59
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'publish'
name: "publish"

# This will trigger the action on each push to the `release` branch.
on:
Expand All @@ -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:
Expand All @@ -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

Expand All @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "photomint",
"private": true,
"version": "0.0.0",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "photomint"
version = "0.0.0"
version = "0.1.0"
description = "Simple Photo Editor"
authors = ["tans"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "PhotoMint",
"version": "0.1.0",
"version": "0.1.1",
"identifier": "xin.minapp.mint",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down

0 comments on commit d444b59

Please sign in to comment.