build(deps): Bump serde from 1.0.213 to 1.0.214 #296
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: main | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
set-safe-directory: true | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: pre-commit/[email protected] | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
suffix: '' | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
suffix: '' | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
suffix: .exe | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release | |
- name: Archive release artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mod_installer-${{ matrix.target }}${{ matrix.suffix }} | |
path: ./target/release/mod_installer${{ matrix.suffix }} | |
release: | |
needs: [build, pre-commit] | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
tag_name: ${{ steps.get_tag.outputs.git_tag }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate a changelog | |
uses: orhun/[email protected] | |
id: git-cliff | |
with: | |
config: cliff.toml | |
args: --latest --verbose | |
env: | |
OUTPUT: CHANGELOG.md | |
- name: Print the changelog | |
run: cat "${{ steps.git-cliff.outputs.changelog }}" | |
- name: Get the tag | |
id: get_tag | |
run: echo ::set-output name=git_tag::${GITHUB_REF/refs\/tags\//} | |
- name: Create Release | |
id: create_release | |
uses: ncipollo/[email protected] | |
with: | |
bodyFile: ./CHANGELOG.md | |
prerelease: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') }} | |
upload: | |
needs: [release] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
suffix: '' | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
suffix: '' | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
suffix: .exe | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: mod_installer-${{ matrix.target }}${{ matrix.suffix }} | |
- name: Upload Release Asset - ${{ matrix.os }} | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.release.outputs.upload_url }} | |
asset_path: ./mod_installer${{ matrix.suffix }} | |
asset_name: mod_installer-${{ matrix.target }}${{ matrix.suffix }} | |
asset_content_type: application/octet-stream |