Skip to content

add GH action to add the binary new releases #14

add GH action to add the binary new releases

add GH action to add the binary new releases #14

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- v*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
draft: true
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: mprisqueeze
target: x86_64-unknown-linux-musl
include: LICENSE,README.md
token: ${{ secrets.GITHUB_TOKEN }}