Skip to content

Commit f89b5b8

Browse files
committed
feat: github action
1 parent 02c8263 commit f89b5b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@ jobs:
3232
- name: Set up Go
3333
uses: actions/setup-go@v4
3434
with:
35-
go-version: '1.22' # Use a stable version
35+
go-version: '1.22'
3636

3737
- name: Build
3838
run: go build -v -o ${{ matrix.output_name }} ./main.go
39-
# If your main.go is elsewhere, adjust the path accordingly
4039

4140
- name: Upload artifact
4241
uses: actions/upload-artifact@v4
@@ -52,7 +51,7 @@ jobs:
5251
- name: Download all artifacts
5352
uses: actions/download-artifact@v4
5453
with:
55-
path: ./artifacts # Specify a download path
54+
path: ./artifacts
5655

5756
- name: List files
5857
run: ls -R ./artifacts

0 commit comments

Comments
 (0)