fix: fmt #12
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
on: | |
push: | |
tags: | |
- 'v*' | |
name: Release | |
jobs: | |
create_release: | |
runs-on: ubuntu-latest | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
steps: | |
- id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
release-linux: | |
name: x86_64-unknown-linux-gnu | |
needs: create_release | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
sudo apt-get update | |
sudo apt-get install libx11-xcb-dev libxcb-shape0-dev libxcb-xfixes0-dev libharfbuzz-dev | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release | |
- id: get_name | |
run: | | |
echo ::set-output name=NAME::silicon-${GITHUB_REF/refs\/tags\//}-x86_64-unknown-linux-gnu.tar.gz | |
- run: | | |
tar czf ${{ steps.get_name.outputs.NAME }} -C ./target/release silicon | |
- uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | |
asset_path: ./${{ steps.get_name.outputs.NAME }} | |
asset_name: ${{ steps.get_name.outputs.NAME }} | |
asset_content_type: application/zip | |
release-macos: | |
name: x86_64-apple-darwin | |
needs: create_release | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release | |
- id: get_name | |
run: | | |
echo ::set-output name=NAME::silicon-${GITHUB_REF/refs\/tags\//}-x86_64-apple-darwin.tar.gz | |
- run: | | |
tar czf ${{ steps.get_name.outputs.NAME }} -C ./target/release silicon | |
- uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | |
asset_path: ./${{ steps.get_name.outputs.NAME }} | |
asset_name: ${{ steps.get_name.outputs.NAME }} | |
asset_content_type: application/zip | |
release-windows: | |
name: x86_64-pc-windows-msvc | |
needs: create_release | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --no-default-features --features=bin | |
- id: get_name | |
shell: bash | |
run: | | |
echo ::set-output name=NAME::silicon-${GITHUB_REF/refs\/tags\//}-x86_64-pc-windows-msvc.tar.gz | |
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
- shell: bash | |
run: | | |
shopt -s extglob | |
tar czf ${{ steps.get_name.outputs.NAME }} -C ./target/release silicon.exe | |
- uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | |
asset_path: ./${{ steps.get_name.outputs.NAME }} | |
asset_name: ${{ steps.get_name.outputs.NAME }} | |
asset_content_type: application/zip |