Skip to content

Commit

Permalink
chore: release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyuuki committed Jun 22, 2024
1 parent 0a08a3f commit 4321c5a
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 12 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "publish"

on:
push:
branches:
- release

jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
- target: x86_64-unknown-linux-musl
archive: tar.gz tar.xz tar.zst
- target: x86_64-apple-darwin
archive: zip
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
10 changes: 5 additions & 5 deletions 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,13 +1,13 @@
[package]
name = "ei-extractor"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

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

[dependencies]
epub = "2.1.1"
scraper = "0.18.1"
scraper = "0.19.0"
clap = "4.4.7"

[package.metadata.scripts]
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ ei-extractor是一个命令行工具,用于从ePub漫画中提取图片,并

## Download

- [Windows](../../releases/download/v0.1.0/ei-extractor.exe)

```bash
curl https://github.com/taiyuuki/ei-extractor/releases/download/v0.1.0/ei-extractor.exe -o ei-extractor.exe
```
- [Download](../../releases/download/latest)

## Usage

Example on Windows:

```bash
Usage: ei-extractor.exe <EPUB File>

Expand Down

0 comments on commit 4321c5a

Please sign in to comment.