-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,12 +31,19 @@ jobs: | |
GOOS=windows GOARCH=amd64 go build -o ./bin/geo-windows-amd64.exe ./cmd/geo | ||
GOOS=windows GOARCH=arm64 go build -o ./bin/geo-windows-arm64.exe ./cmd/geo | ||
- name: Delete current release assets | ||
uses: andreaswilli/[email protected] | ||
# - name: Delete current release assets | ||
# uses: andreaswilli/[email protected] | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# tag: latest | ||
# deleteOnlyFromDrafts: false | ||
|
||
- uses: dev-drprasad/[email protected] # PRERELEASE is v1.0 and can also be used to test and give us feedback | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: latest | ||
deleteOnlyFromDrafts: false | ||
tag_name: latest | ||
github_token: ${{ secrets.GITHUB_TOKEN }} # (required) a GitHub token with write access to the repo that needs to be modified | ||
delete_release: true #(optional) default: true | ||
# repo: <owner>/<repoName> #(optional) target repository. default: repo running this action | ||
|
||
- name: Create and Upload Release | ||
id: upload_release | ||
|