Building fip-player #48
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: Build fip-player | |
run-name: Building fip-player | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt update | |
- run: sudo apt install golang libmpv-dev | |
- uses: actions/checkout@v3 | |
- run: go build . | |
- name: Set uuid | |
id: vars | |
run: echo "uuid=$(uuidgen)" >> $GITHUB_OUTPUT | |
- uses: marvinpinto/[email protected] | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "${{ steps.vars.outputs.uuid }}" | |
prerelease: false | |
title: "Nightly build of ${{ steps.vars.outputs.uuid }}" | |
files: fip-player |