Merge branch release-v0.31.0 #216
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: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
name: Rust CI - Create Release | |
jobs: | |
check: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust latest stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
# TODO: Use `toolchain: stable` once wasm-bindgen-macro is stable | |
# | |
# Compiling wasm-bindgen-macro v0.2.97 | |
# error[E0554]: `#![feature]` may not be used on the stable release channel | |
# Error: --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-0.2.97/src/lib.rs:4:5 | |
# | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- name: Run cargo test | |
uses: actions-rs/cargo@v1 | |
env: | |
ONET_CONFIG_FILENAME: .env.example | |
with: | |
command: test | |
- name: Run cargo build | |
uses: actions-rs/cargo@v1 | |
env: | |
ONET_CONFIG_FILENAME: .env.example | |
with: | |
command: build | |
args: --release | |
- name: Generate SHA-256 hash file | |
run: | | |
cd ./target/release | |
sha256sum onet > onet.sha256 | |
- name: Get Rustc version | |
id: get_rustc | |
run: echo ::set-output name=rustc::$(rustc -V) | |
- name: Get Tag version | |
id: get_tag | |
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | |
- name: Create release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.get_tag.outputs.tag }} | |
release_name: ONE-T ${{ steps.get_tag.outputs.tag }} | |
body: "Note: This release was built using `${{ steps.get_rustc.outputs.rustc }}`" | |
draft: true | |
prerelease: false | |
- name: Upload onet binary | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./target/release/onet | |
asset_name: onet | |
asset_content_type: application/octet-stream | |
- name: Upload onet sha256 | |
uses: actions/upload-release-asset@v1.0.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./target/release/onet.sha256 | |
asset_name: onet.sha256 | |
asset_content_type: text/plain | |