Skip to content

Commit

Permalink
Release 0.7.2
Browse files Browse the repository at this point in the history
harper-ls@0.7.2

Generated by cargo-workspaces
  • Loading branch information
elijah-potter committed Feb 23, 2024
1 parent 1d00d3d commit 5084696
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 2 deletions.
82 changes: 82 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Release

on:
push:
branches: [ "release" ]

jobs:
release:
name: Release - ${{ matrix.platform.release_for }}
strategy:
matrix:
platform:
- release_for: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-gnu
bin: harper-ls.exe
name: harper-ls-x86_64-pc-windows-gnu.zip
command: build

- release_for: macOS-x86_64
os: macOS-latest
target: x86_64-apple-darwin
bin: harper-ls
name: harper-ls-x86_64-apple-darwin.tar.gz
command: build

- release_for: macOS-aarch64
os: macOS-latest
target: aarch64-apple-darwin
bin: harper-ls
name: harper-ls-aarch64-apple-darwin.tar.gz
command: build

- release_for: Linux-x86_64-GNU
os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
bin: harper-ls
name: harper-ls-x86_64-unknown-linux-gnu.tar.gz
command: build

- release_for: Linux-aarch64-GNU
os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
bin: harper-ls
name: harper-ls-aarch64-unknown-linux-gnu.tar.gz
command: build

runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
command: ${{ matrix.platform.command }}
target: ${{ matrix.platform.target }}
args: "--locked --release --bin harper-ls"
strip: true
- name: Package as archive
shell: bash
run: |
cd target/${{ matrix.platform.target }}/release
if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]; then
7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
else
tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
fi
cd -
- name: Generate SHA-256
run: shasum -a 256 ${{ matrix.platform.name }}
if: |
matrix.toolchain == 'stable' &&
matrix.platform.os == 'macOS-latest' &&
( startsWith( github.ref, 'refs/tags/v' ) ||
github.ref == 'refs/tags/test-release' )
- name: Publish GitHub release
uses: softprops/action-gh-release@v1
with:
draft: true
files: "harper-ls-*"
if: startsWith(github.ref, 'refs/tags/'

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion harper-ls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-ls"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down

0 comments on commit 5084696

Please sign in to comment.