Skip to content
Snippets Groups Projects
Commit 28d132f6 authored by Robin Appelman's avatar Robin Appelman
Browse files

0.2.2


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent 430c5813
No related branches found
Tags v0.2.2
No related merge requests found
......@@ -72,4 +72,30 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/artifacts/${{ env.APP_NAME }}.tar.gz
asset_name: ${{ env.APP_NAME }}.tar.gz
tag: ${{ github.ref }}
\ No newline at end of file
tag: ${{ github.ref }}
build-test-client:
name: Build test client
runs-on: ubuntu-20.04
steps:
- name: musl-tools
run: |
sudo apt-get install musl-tools
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: x86_64-unknown-linux-musl
- uses: Swatinem/rust-cache@v1
- run: cargo build --release --target x86_64-unknown-linux-musl
working-directory: ./test_client
- name: Upload binary to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/x86_64-unknown-linux-musl/release/test_client
asset_name: test_client
tag: ${{ github.ref }}
[package]
name = "notify_push"
version = "0.1.0"
version = "0.1.0" # this version number is unused, the version number for the binary will be extracted from the appinfo/info.xml during build
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
......
......@@ -7,7 +7,7 @@
<description><![CDATA[Push update support for desktop app.
Once the app is installed, the push binary needs to be setup. You can either use the setup wizard with `occ notify_push:setup` or see the [README](http://github.com/nextcloud/notify_push) for detailed setup instructions]]></description>
<version>0.2.1</version>
<version>0.2.2</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>NotifyPush</namespace>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment