fix dezoomifying to jpeg #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Optimized builds | |
on: | |
push: | |
branches: [ master ] | |
paths: [ 'src/**.rs', '.github/workflows/optimized-builds.yml' ] | |
# Sequence of patterns matched against refs/tags | |
tags: [ 'v*' ] # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-20.04] | |
include: | |
- os: windows-latest | |
binary_path: target/release/dezoomify-rs.exe | |
- os: macos-latest | |
binary_path: target/release/dezoomify-rs | |
- os: ubuntu-20.04 | |
binary_path: target/release/dezoomify-rs | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- run: cargo build --release --locked | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dezoomify-rs ${{ matrix.os }} | |
path: ${{ matrix.binary_path }} | |
create_release: | |
name: Create Release | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
- run: cd 'dezoomify-rs macos-latest' && chmod +x dezoomify-rs && tar --create --file dezoomify-rs-macos.tgz --gzip dezoomify-rs ../README-MACOS.txt | |
- run: cd 'dezoomify-rs ubuntu-20.04' && chmod +x dezoomify-rs && tar --create --file dezoomify-rs-linux.tgz --gzip dezoomify-rs | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: ${{ github.ref_name }} | |
tag_name: ${{ github.ref_name }} | |
draft: false | |
prerelease: ${{ !startsWith(github.ref, 'refs/tags/v') }} | |
files: | | |
dezoomify-rs windows-latest/dezoomify-rs.exe | |
dezoomify-rs ubuntu-20.04/dezoomify-rs-linux.tgz | |
dezoomify-rs macos-latest/dezoomify-rs-macos.tgz |