We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 343d89c commit ebe3acbCopy full SHA for ebe3acb
.github/workflows/publish.yml
@@ -21,7 +21,7 @@ jobs:
21
- name: Build
22
run: GOOS=${{ matrix.platform }} GOARCH=${{ matrix.arch }} go build -ldflags="-X main.version=$(git describe --tags --abbrev=0)" -o migrash-${{ matrix.platform }}-${{ matrix.arch }}
23
- name: Archive
24
- uses: actions/upload-artifact@v4
+ uses: softprops/action-gh-release@v2
25
with:
26
- name: migrash-${{ matrix.platform }}-${{ matrix.arch }}
27
- path: migrash-${{ matrix.platform }}-${{ matrix.arch }}
+ files: |
+ migrash-${{ matrix.platform }}-${{ matrix.arch }}
0 commit comments