Update DiscordRPC to plugins v4 #76
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: CI | |
on: [push, pull_request] | |
jobs: | |
# Ensure correct Rust code formatting | |
formatting: | |
name: format-check | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Format check | |
run: cargo fmt --all -- --check | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
cargo build --release --verbose | |
- name: Extract Short Commit Hash | |
id: extract | |
shell: bash | |
run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NorthstarDiscordRPC-${{ steps.extract.outputs.commit }} | |
path: | | |
target/release/*.dll | |
target/release/*.pdb |