Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set up automated build process and publish releases #34

Open
thekid opened this issue Jun 23, 2021 · 0 comments
Open

Set up automated build process and publish releases #34

thekid opened this issue Jun 23, 2021 · 0 comments
Labels
enhancement help welcome Searching for something to contribute? Pull requests welcome!

Comments

@thekid
Copy link
Owner

thekid commented Jun 23, 2021

Add GitHub pipelines to do create .exe files and publish them for download under "Releases" as soon as a tag of the form v*.*.* is pushed.

https://github.com/marketplace/actions/gh-release looks like a good fit, an alternative would be to simply use the gh tool directly using YAML:

run: |
  gh release create ${{ env.VERSION }} -n "${{ env.MESSAGE }}" -t "${{ env.NAME }}" ${{ env.FILES }}
env:
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  VERSION: "tag for release"
  MESSAGE: "message for release"
  NAME: "release name"
  FILES: path/to/file1 path/to/file2 ...

(Source: softprops/action-gh-release#107 (comment))

@thekid thekid added enhancement bug help welcome Searching for something to contribute? Pull requests welcome! and removed bug labels Jun 23, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement help welcome Searching for something to contribute? Pull requests welcome!
Projects
None yet
Development

No branches or pull requests

1 participant