Skip to content

Commit

Permalink
fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
s2terminal committed Jul 19, 2020
1 parent 0f527b3 commit f7bc9f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
- name: Build
run: cargo build --release --target=x86_64-unknown-linux-musl

- name: Compress
run: |
mv target/x86_64-unknown-linux-musl/release/i-read-rs i-read-rs
tar --gunzip --create --file i-read-rs.tar.gz i-read-rs
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: i-read-rs-linux-amd64
path: target/x86_64-unknown-linux-musl/release/i-read-rs

- name: Compress
run: |
mv target/x86_64-unknown-linux-musl/release/i-read-rs i-read-rs
tar --gunzip --create --file i-read-rs.tar.gz i-read-rs
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -52,5 +52,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: i-read-rs.tar.gz
asset_name: i-read-rs
asset_name: i-read-rs.tar.gz
asset_content_type: application/octet-stream
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "i-read-rs"
version = "0.1.0"
authors = ["s2terminal"]
version = "0.0.4"
authors = ["s2terminal <suzuki.sh@s2terminal.com>"]
edition = "2018"

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

0 comments on commit f7bc9f0

Please sign in to comment.