Add changelog entry for 97b12b0f46c59ebce7bd899c74b531fcf96d4a3d #384
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: | |
rustfmt: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: rustup | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- run: cargo fmt --all -- --check | |
clippy: | |
runs-on: windows-2022 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: rustup | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- run: cargo clippy --all-targets -- -D warnings | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: rustup | |
uses: dtolnay/rust-toolchain@stable | |
- run: cargo install cargo-wix | |
- run: cargo wix --nocapture | |
- name: upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package | |
path: target/wix/*.msi | |
- name: publish to gh-releases | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: target/wix/*.msi | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: publish to chocolatey.org | |
if: startsWith(github.ref, 'refs/tags/') | |
run: .\choco-publish.ps1 ${env:GITHUB_REF} ${env:CHOCOLATEY_APIKEY} | |
env: | |
CHOCOLATEY_APIKEY: ${{ secrets.CHOCOLATEY_APIKEY }} | |
- name: publish to WinGet | |
if: startsWith(github.ref, 'refs/tags/') | |
run: .\winget-publish.ps1 ${env:GITHUB_REF} ${env:GH_PERSONAL_TOKEN} | |
env: | |
# We cannot use GITHUB_TOKEN here because it doesn't have permission to work with winget-pkgs repository fork | |
GH_PERSONAL_TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }} |