chore: Update Rust workflow to build, test, create release, and uploa… #17
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: Rust Build, Test, and Publish | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
release: | ||
types: [created] | ||
jobs: | ||
build: | ||
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: | ||
- name: Check out the repository | ||
uses: actions/checkout@v2 | ||
- name: Install Rust toolchain | ||
run: rustup target add ${{ matrix.target }} | ||
- name: Set up Rust toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
target: ${{ matrix.target }} | ||
override: true | ||
- name: Install dependencies for Windows target | ||
if: matrix.target == 'x86_64-pc-windows-gnu' | ||
run: sudo apt-get install mingw-w64 -y | ||
- name: Build the project | ||
run: cargo build --release --target ${{ matrix.target }} | ||
- name: Run tests | ||
run: cargo test --release --target ${{ matrix.target }} | ||
- name: Package the build | ||
run: | | ||
mkdir -p dist | ||
if [ "${{ matrix.archive }}" == "zip" ]; then | ||
zip -j dist/ml2pdf-${{ matrix.target }}.zip target/${{ matrix.target }}/release/ml2pdf* | ||
else | ||
tar -czvf dist/ml2pdf-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ml2pdf* | ||
fi | ||
with: | ||
working-directory: . | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: rust-app-${{ matrix.target }} | ||
path: dist/ | ||
publish: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: rust-app-${{ matrix.target }} | ||
path: dist/ | ||
- name: Get current date | ||
id: get_date | ||
run: echo "DATE=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV | ||
- name: Publish release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ env.DATE }} | ||
release_name: Release ${{ env.DATE }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload artifacts to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: dist/ml2pdf-${{ matrix.target }}.* | ||
asset_name: ml2pdf-${{ matrix.target }}.${{ matrix.archive }} | ||
asset_content_type: application/octet-stream | ||
- name: Clean up artifacts | ||
run: rm -rf dist/ |