Skip to content

Commit

Permalink
fixed release location
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayclifford345 committed Jan 13, 2025
1 parent 5758f59 commit 233077d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
go-version: '1.23' # Adjust this based on the version you need

- name: Build transformer
run: |
mkdir -p release
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o release/transformer-${{ matrix.os }}-${{ matrix.arch }} tools/transformer
working-directory: ./tools/transformer

run: |
mkdir -p ../../release
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o ../../release/transformer-${{ matrix.os }}-${{ matrix.arch }}
- name: Archive build
run: |
zip -j release/transformer-${{ matrix.os }}-${{ matrix.arch }}.zip release/transformer-${{ matrix.os }}-${{ matrix.arch }}
Expand Down

0 comments on commit 233077d

Please sign in to comment.