We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080f5cb commit e0c4fbfCopy full SHA for e0c4fbf
.github/workflows/release.yml
@@ -22,10 +22,14 @@ jobs:
22
uses: actions/checkout@v3
23
24
- name: Get dependencies
25
- run: go mod download
+ run: |
26
+ cd sourcecode-parser
27
+ go mod download
28
29
- name: Build
- run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o pathfinder-${{ matrix.goos }}-${{ matrix.goarch }} .
30
31
32
+ GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o pathfinder-${{ matrix.goos }}-${{ matrix.goarch }} .
33
34
- name: Create Release
35
id: create_release
0 commit comments