Skip to content

Commit

Permalink
adjust release action
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdy committed Oct 1, 2023
1 parent fef84f8 commit 5668c41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,3 @@ jobs:
run: |
go get .
go build -v -o dhtc-${{ matrix.os }} dhtc
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist-without-markdown
path: dhtc-*
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: Build
run: |
go get .
go build -v dhtc
go build -v -o dhtc-${{ matrix.os }} dhtc
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dhtc*
files: dhtc-*

0 comments on commit 5668c41

Please sign in to comment.