Updated release.yml #4
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 | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- name: Build for Linux | |
run: cargo build --release --target x86_64-unknown-linux-gnu | |
- name: Build for Windows | |
run: cargo build --release --target x86_64-pc-windows-msvc | |
- name: Create release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
Changes in this release. | |
draft: false | |
prerelease: false | |
- name: Upload Linux build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: c3.x86.linux | |
path: target/x86_64-unknown-linux-gnu/release/c3 | |
- name: Upload Windows build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: c3.x86_64.windows.exe | |
path: target/x86_64-pc-windows-msvc/release/c3 |