mirror of
https://github.com/esp-rs/espup.git
synced 2025-09-28 13:20:41 +00:00

* build: Bump espup version and deps * docs: Update changelog * ci: Remove unused steps and cache action
81 lines
2.8 KiB
YAML
81 lines
2.8 KiB
YAML
name: Continuous Deployment
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
jobs:
|
|
publish-release:
|
|
name: Generating artifacts for ${{ matrix.job.target }}
|
|
runs-on: ${{ matrix.job.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
job:
|
|
- os: macos-latest
|
|
target: x86_64-apple-darwin
|
|
- os: ubuntu-22.04
|
|
target: x86_64-unknown-linux-gnu
|
|
- os: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
binary-postfix: ".exe"
|
|
- os: ubuntu-22.04
|
|
target: aarch64-unknown-linux-gnu
|
|
- os: macos-latest
|
|
target: aarch64-apple-darwin
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
- name: Install Rust toolchain
|
|
uses: dtolnay/rust-toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
target: ${{ matrix.job.target }}
|
|
- name: Publish (dry-run)
|
|
if: matrix.job.target == 'x86_64-unknown-linux-gnu'
|
|
run: cargo publish --dry-run
|
|
- name: Install cross and build
|
|
if: matrix.job.target == 'aarch64-unknown-linux-gnu'
|
|
run: |
|
|
cargo install cross
|
|
cross build --release --target ${{ matrix.job.target }}
|
|
- name: Cargo build
|
|
if: matrix.job.target != 'aarch64-unknown-linux-gnu'
|
|
run: cargo build --release --target ${{ matrix.job.target }}
|
|
- name: Compress (Unix)
|
|
if: ${{ matrix.job.os != 'windows-latest' }}
|
|
run: zip -j espup-${{ matrix.job.target }}.zip target/${{ matrix.job.target }}/release/espup${{ matrix.job.binary-postfix }}
|
|
- name: Compress (Windows)
|
|
if: ${{ matrix.job.os == 'windows-latest' }}
|
|
run: Compress-Archive target/${{ matrix.job.target }}/release/espup${{ matrix.job.binary-postfix }} espup-${{ matrix.job.target }}.zip
|
|
- name: Upload compressed artifact
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: espup-${{ matrix.job.target }}.zip
|
|
tag: ${{ github.ref }}
|
|
- name: Upload binary artifact
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: target/${{ matrix.job.target }}/release/espup${{ matrix.job.binary-postfix }}
|
|
asset_name: espup-${{ matrix.job.target }}${{ matrix.job.binary-postfix }}
|
|
tag: ${{ github.ref }}
|
|
publish-cratesio:
|
|
name: Publishing to Crates.io
|
|
needs: publish-release
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
- name: Install Rust toolchain
|
|
uses: dtolnay/rust-toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- name: Cargo publish
|
|
run: cargo publish --token ${{ secrets.CARGO_API_KEY }}
|