Skip to content

Fix upload workflow

Fix upload workflow #4

Workflow file for this run

name: Publish
on:
push:
tags:
- '*'
jobs:
build:
name: Publish binaries
runs-on: ubuntu-latest
steps:
- name: Upload binary to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: winball.exe
asset_name: winball.exe
tag: ${{ github.ref }}
overwrite: true
body: "Initial release. Uploaded directly."