Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sammcj committed Jul 29, 2024
1 parent fa33be0 commit d4cd7d8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build-release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
GOARCH: ${{ matrix.arch }}
VERSION: ${{ steps.get_version.outputs.VERSION }}

run: go build -v -ldflags "-X main.Version=$VERSION" -o ${{ env.BINARY_NAME }}-${{ matrix.os }}-${{ matrix.arch }} .
run: |
go build -v -ldflags "-X main.Version=$VERSION" -o build/${{ env.BINARY_NAME }}-${{ matrix.os }}-${{ matrix.arch }} .
ls -ltarh build/
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand All @@ -86,12 +88,9 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: |
ingest-linux-amd64
ingest-linux-arm64
ingest-darwin-arm64
path: build/


- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit d4cd7d8

Please sign in to comment.