mirror of
https://github.com/davegallant/rfd-notify.git
synced 2025-08-06 08:43:39 +00:00
43 lines
1007 B
YAML
43 lines
1007 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publish for ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
artifact_name: rfd-notify
|
|
asset_name: rfd-notify-linux-amd64
|
|
- os: windows-latest
|
|
artifact_name: rfd-notify.exe
|
|
asset_name: rfd-notify-windows-amd64
|
|
- os: macos-latest
|
|
artifact_name: rfd-notify
|
|
asset_name: rfd-notify-macos-amd64
|
|
|
|
steps:
|
|
- uses: hecrj/setup-rust-action@v1
|
|
with:
|
|
rust-version: stable
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build
|
|
run: cargo build --release --locked
|
|
|
|
- name: Upload binaries to release
|
|
|
|
uses: svenstaro/upload-release-action@v1-release
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: target/release/${{ matrix.artifact_name }}
|
|
asset_name: ${{ matrix.asset_name }}
|
|
tag: ${{ github.ref }}
|