Skip to content

Commit e0c4fbf

Browse files
committed
Update the directory for building
1 parent 080f5cb commit e0c4fbf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,14 @@ jobs:
2222
uses: actions/checkout@v3
2323

2424
- name: Get dependencies
25-
run: go mod download
25+
run: |
26+
cd sourcecode-parser
27+
go mod download
2628
2729
- name: Build
28-
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o pathfinder-${{ matrix.goos }}-${{ matrix.goarch }} .
30+
run: |
31+
cd sourcecode-parser
32+
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o pathfinder-${{ matrix.goos }}-${{ matrix.goarch }} .
2933
3034
- name: Create Release
3135
id: create_release

0 commit comments

Comments
 (0)