Skip to content

Commit

Permalink
Make proper releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Disquse committed Oct 14, 2023
1 parent b17a365 commit 1fdb1ce
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ jobs:
- name: Build
run: GOOS=windows GOARCH=amd64 go build -v

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: ./*.exe
- name: Make release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Development Build"
files: |
LICENSE
*.exe

0 comments on commit 1fdb1ce

Please sign in to comment.