Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
- ci for win64 and android
- auto release
  • Loading branch information
flaribbit committed Oct 27, 2023
1 parent a3bd05f commit 1199a1e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ jobs:
with:
name: win64
path: target/release/imgfind.exe

- name: Release
uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/')
with:
allowUpdates: true
name: win64
artifacts: target/release/imgfind.exe

build-android:
runs-on: ubuntu-latest
steps:
Expand All @@ -45,3 +52,10 @@ jobs:
with:
name: android-aarch64
path: target/aarch64-linux-android/release/imgfind
- name: Release
uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/')
with:
allowUpdates: true
name: android-aarch64
artifacts: target/aarch64-linux-android/release/imgfind
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgfind"
version = "0.2.1"
version = "0.3.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 1199a1e

Please sign in to comment.