Release #15
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: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "lsp version" | ||
required: true | ||
jobs: | ||
check: | ||
name: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: install rust | ||
uses: ./.github/actions/install-rust | ||
- name: check | ||
uses: ./.github/actions/check | ||
compile: | ||
name: compile ${{ matrix.target }} | ||
runs-on: ${{ matrix.runner }} | ||
needs: check | ||
strategy: | ||
matrix: | ||
include: | ||
- target: x86_64-unknown-linux-gnu | ||
runner: ubuntu-latest | ||
archive: tar.gz | ||
bootstrap: sudo apt-get update && sudo apt-get install -y libssl-dev | ||
- target: x86_64-apple-darwin | ||
runner: macos-latest | ||
archive: tar.gz | ||
bootstrap: brew install openssl | ||
- target: aarch64-apple-darwin | ||
runner: macos-latest | ||
archive: tar.gz | ||
bootstrap: brew install openssl | ||
- target: x86_64-pc-windows-msvc | ||
runner: windows-latest | ||
archive: zip | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: install rust | ||
uses: ./.github/actions/install-rust | ||
with: | ||
targets: "${{ matrix.target }}" | ||
- name: bootstrap | ||
if: ${{ matrix.bootstrap != "" }} | ||
Check failure on line 57 in .github/workflows/release.yml GitHub Actions / ReleaseInvalid workflow file
|
||
run: ${{ matrix.bootstrap }} | ||
- name: build binary | ||
run: cargo build -p discord-presence-lsp --verbose --locked --release --target ${{ matrix.target }} | ||
- name: prepare for upload | ||
shell: bash | ||
id: vars | ||
run: | | ||
BIN_SUFFIX="" | ||
if [[ "${{ matrix.runner }}" == "windows-latest" ]]; then | ||
BIN_SUFFIX=".exe" | ||
fi | ||
BIN_OUTPUT="target/${{ matrix.target }}/release/discord-presence-lsp${BIN_SUFFIX}" | ||
ARCHIVE_NAME="discord-presence-lsp-${{ matrix.target }}" | ||
mkdir tmp/ | ||
mkdir "tmp/${ARCHIVE_NAME}" | ||
mv "${BIN_OUTPUT}" "tmp/${ARCHIVE_NAME}" | ||
cp LICENSE "tmp/${ARCHIVE_NAME}" | ||
cp lsp/README.md "tmp/${ARCHIVE_NAME}" | ||
if [[ "${{ matrix.archive }}" == "tar.gz" ]]; then | ||
ARCHIVE_PATH="tmp/${ARCHIVE_NAME}.tar.gz" | ||
tar -czvf "${ARCHIVE_PATH}" -C "tmp" "${ARCHIVE_NAME}" | ||
else | ||
ARCHIVE_PATH="tmp/${ARCHIVE_NAME}.zip" | ||
cd tmp | ||
if [[ "${{ matrix.runner }}" == "windows-latest" ]]; then | ||
7z a "../${ARCHIVE_PATH}" "${ARCHIVE_NAME}" | ||
else | ||
zip -r "../${ARCHIVE_PATH}" "/${ARCHIVE_NAME}" | ||
fi | ||
cd .. | ||
fi | ||
echo "archive_name=${ARCHIVE_NAME}" >> $GITHUB_OUTPUT | ||
echo "archive_path=${ARCHIVE_PATH}" >> $GITHUB_OUTPUT | ||
- name: upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ steps.vars.outputs.archive_name }} | ||
path: | | ||
${{ steps.vars.outputs.archive_path }} | ||
release: | ||
name: release | ||
runs-on: ubuntu-latest | ||
needs: compile | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: download artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
- name: Create the release | ||
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ inputs.version }} | ||
name: v${{ inputs.version }} | ||
draft: true | ||
files: | | ||
artifacts/**/* |