Skip to content

Commit

Permalink
fix(ci): just add every file in out/bin to release
Browse files Browse the repository at this point in the history
  • Loading branch information
brumhard committed May 9, 2023
1 parent 308d4b6 commit 4f7b6e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v3
with:
path: out/
- name: Move artifacts to /out/bin
run: |
mkdir -p out/bin/
find out/ -type f -exec cp {} out/bin/ \;
path: out/bin/
- name: Release
run: goreleaser release --clean
env:
Expand Down
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ builds:
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
extra_files:
- glob: out/bin/*
- glob: out/bin/**
signs:
- artifacts: checksum
release:
mode: replace
footer: |
**Full Changelog**: https://github.com/brumhard/reinlinsen/compare/{{ .PreviousTag }}...{{ .Tag }}
extra_files:
- glob: out/bin/*
- glob: out/bin/**
changelog:
sort: asc
use: github
Expand Down

0 comments on commit 4f7b6e9

Please sign in to comment.