From e0c4fbf0aa7e4c58535fcf80daed90d348b0fedd Mon Sep 17 00:00:00 2001 From: Shivasurya Date: Sat, 27 Apr 2024 19:03:41 -0400 Subject: [PATCH] Update the directory for building --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c95bf03..88f4cf18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,10 +22,14 @@ jobs: uses: actions/checkout@v3 - name: Get dependencies - run: go mod download + run: | + cd sourcecode-parser + go mod download - name: Build - run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o pathfinder-${{ matrix.goos }}-${{ matrix.goarch }} . + run: | + cd sourcecode-parser + GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o pathfinder-${{ matrix.goos }}-${{ matrix.goarch }} . - name: Create Release id: create_release