v1.5.0 - Enhanced Configuration, Colorful Output, and Performance tweaks #48
Workflow file for this run
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: Release artifacts | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
jobs: | |
build_release_osx: | |
env: | |
TARGET: x86_64-apple-darwin | |
RELEASE_TAG: ${{ github.event.release.tag_name }} | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create artifacts folder | |
run: mkdir artifacts | |
- name: Create artifacts for darwin | |
run: sh ci/script.sh | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: funzzy-${{ env.RELEASE_TAG }}-${{ env.TARGET }}.tar.gz | |
asset_name: funzzy-${{ env.RELEASE_TAG }}-${{ env.TARGET }}.tar.gz | |
tag: ${{ github.ref }} | |
overwrite: true | |
build_release_linux: | |
env: | |
TARGET: x86_64-unknown-linux-gnu | |
RELEASE_TAG: ${{ github.event.release.tag_name }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create artifacts folder | |
run: mkdir artifacts | |
- name: Create artifacts for linux | |
run: sh ci/script.sh | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: funzzy-${{ env.RELEASE_TAG }}-${{ env.TARGET }}.tar.gz | |
asset_name: funzzy-${{ env.RELEASE_TAG }}-${{ env.TARGET }}.tar.gz | |
tag: ${{ github.ref }} | |
overwrite: true | |
publish_crates: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: make build | |
- name: Publish crate | |
run: cargo publish --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} |