Skip to content

Commit

Permalink
Bump version to 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Hurlenko committed Jul 2, 2024
1 parent defc26e commit a35c75e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
upload_url: ${{ steps.release.outputs.upload_url }}
rg_version: ${{ env.RG_VERSION }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get the release version from the tag
shell: bash
if: env.RG_VERSION == ''
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
$VCPKG_ROOT/vcpkg install libxml2:x64-windows-static
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
Expand Down Expand Up @@ -180,13 +180,13 @@ jobs:
if: ${{ always() }}
needs: ["create-release"]
runs-on: ubuntu-latest
container: clux/muslrust:1.71.0
container: clux/muslrust:1.79.0
env:
LIBXML_VER: "2.9.14"
BINARY: "orly"
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Link to predefined musl toolchain
run: |
Expand All @@ -204,6 +204,7 @@ jobs:
- name: Build release binary
run: |
rustup install 1.79.0
cargo build --release --locked
- name: Build archive
Expand Down Expand Up @@ -233,7 +234,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: ["build-release", "build-release-musl"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cargo login ${CRATES_IO_TOKEN}
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
Expand Down
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orly"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["hurlenko"]
description = "Download O'Reilly books as EPUB"
Expand Down

0 comments on commit a35c75e

Please sign in to comment.