We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c8263 commit f89b5b8Copy full SHA for f89b5b8
.github/workflows/go.yml
@@ -32,11 +32,10 @@ jobs:
32
- name: Set up Go
33
uses: actions/setup-go@v4
34
with:
35
- go-version: '1.22' # Use a stable version
+ go-version: '1.22'
36
37
- name: Build
38
run: go build -v -o ${{ matrix.output_name }} ./main.go
39
- # If your main.go is elsewhere, adjust the path accordingly
40
41
- name: Upload artifact
42
uses: actions/upload-artifact@v4
@@ -52,7 +51,7 @@ jobs:
52
51
- name: Download all artifacts
53
uses: actions/download-artifact@v4
54
55
- path: ./artifacts # Specify a download path
+ path: ./artifacts
56
57
- name: List files
58
run: ls -R ./artifacts
0 commit comments