Release #81
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: | |
- 'v*.*.*' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
rust: [stable] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: ${{ matrix.rust }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup MUSL | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
rustup target add x86_64-unknown-linux-musl | |
sudo apt-get -qq install musl-tools | |
- name: Setup aarch64 mac | |
if: matrix.os == 'macOS-latest' | |
run: | | |
rustup target add aarch64-apple-darwin | |
rustup target add x86_64-apple-darwin | |
- name: Build for linux | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
make release_lnx | |
- name: Build for macOS | |
if: matrix.os == 'macOS-latest' | |
run: make release_mac | |
- name: Build for Windows | |
if: matrix.os == 'windows-latest' | |
run: make release_win | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
generate_release_notes: true | |
files: "*.zip\n*.rpm" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
vsce: | |
needs: build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: support/vscode | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- run: npm install | |
- run: make publish | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} |