We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9599600 commit 78b0c57Copy full SHA for 78b0c57
1 file changed
.github/workflows/ci.yml
@@ -55,14 +55,12 @@ jobs:
55
- name: Build
56
run: |
57
New-Item -ItemType Directory -Force dist | Out-Null
58
- $os = ($env:RUNNER_OS).ToLowerInvariant()
59
- $arch = ($env:RUNNER_ARCH).ToLowerInvariant()
60
$ext = if ($env:RUNNER_OS -eq 'Windows') { '.exe' } else { '' }
61
- go build -v -o "dist/dspm-$os-$arch$ext" ./cmd/dspm
+ go build -v -o "dist/dspm$ext" ./cmd/dspm
62
63
- name: Upload artifact
64
uses: actions/upload-artifact@v7
65
with:
66
- name: dspm-${{ runner.os }}-${{ runner.arch }}
+ name: dspm-${{ runner.os }}-${{ runner.arch }}-${{ github.sha }}
67
path: dist/*
68
if-no-files-found: error
0 commit comments