Skip to content

Commit

Permalink
ci: Automatically upload releases from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tkw1536 committed Apr 8, 2022
1 parent 700a907 commit 7b39ab5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ jobs:
make generate
- name: Run 'make all'
run: make all
- name: Upload executables
uses: actions/upload-artifact@v2
- name: Upload Releases
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: Binaries
path: dist/*
files: |
dist/ggman
dist/ggman_mac
dist/ggman.exe
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ ggman comes with the following builtin aliases:
- add `ggman env` command to print information about ggman
- use native git when available in `ggman fetch`, `ggman pull`
- make built-in git `fetch`, `pull` and `clone` progress on standard error
- automatically upload releases from GitHub actions
- minor fixes

### 1.14.0 (Released [Mar 27 2022](https://github.com/tkw1536/ggman/releases/tag/v1.14.0))
Expand Down

0 comments on commit 7b39ab5

Please sign in to comment.