Bump eas-env version to 0.2.2 and update README.md #16
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 | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
release: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Rustup add target x86_64-apple-darwin | |
run: rustup target add x86_64-apple-darwin | |
- name: Build release binary | |
run: cargo build --release --target x86_64-apple-darwin | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
make_latest: 'true' | |
files: | | |
./target/x86_64-apple-darwin/release/eas-env |