Skip to content

Commit

Permalink
Merge pull request #237 from sue445/feature/merge-multiple
Browse files Browse the repository at this point in the history
Refactor: Enabled `merge-multiple` ⛳
  • Loading branch information
sue445 committed Dec 20, 2023
2 parents 7c6c3e4 + 9262da3 commit b668a06
Showing 1 changed file with 3 additions and 110 deletions.
113 changes: 3 additions & 110 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,119 +230,12 @@ jobs:
go-version-file: "go.mod"
id: go

- name: Download artifacts from darwin-amd64
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
name: bin-darwin-amd64
path: bin/

- name: Download artifacts from darwin-arm64
uses: actions/download-artifact@v4
with:
name: bin-darwin-arm64
path: bin/

- name: Download artifacts from freebsd-386
uses: actions/download-artifact@v4
with:
name: bin-freebsd-386
path: bin/

- name: Download artifacts from freebsd-amd64
uses: actions/download-artifact@v4
with:
name: bin-freebsd-amd64
path: bin/

- name: Download artifacts from freebsd-arm
uses: actions/download-artifact@v4
with:
name: bin-freebsd-arm
path: bin/

- name: Download artifacts from linux-386
uses: actions/download-artifact@v4
with:
name: bin-linux-386
path: bin/

- name: Download artifacts from linux-amd64
uses: actions/download-artifact@v4
with:
name: bin-linux-amd64
path: bin/

- name: Download artifacts from linux-arm
uses: actions/download-artifact@v4
with:
name: bin-linux-arm
path: bin/

- name: Download artifacts from netbsd-amd64
uses: actions/download-artifact@v4
with:
name: bin-netbsd-amd64
path: bin/

- name: Download artifacts from netbsd-arm
uses: actions/download-artifact@v4
with:
name: bin-netbsd-arm
path: bin/

- name: Download artifacts from netbsd-386
uses: actions/download-artifact@v4
with:
name: bin-netbsd-386
path: bin/

- name: Download artifacts from openbsd-386
uses: actions/download-artifact@v4
with:
name: bin-openbsd-386
path: bin/

- name: Download artifacts from openbsd-amd64
uses: actions/download-artifact@v4
with:
name: bin-openbsd-amd64
path: bin/

- name: Download artifacts from windows-amd64
uses: actions/download-artifact@v4
with:
name: bin-windows-amd64
path: bin/

- name: Download artifacts from windows-386
uses: actions/download-artifact@v4
with:
name: bin-windows-386
path: bin/

- name: Download artifacts from darwin-amd64
uses: actions/download-artifact@v4
with:
name: bin-oracle-darwin-amd64
path: bin/

- name: Download artifacts from linux-386
uses: actions/download-artifact@v4
with:
name: bin-oracle-linux-386
path: bin/

- name: Download artifacts from linux-amd64
uses: actions/download-artifact@v4
with:
name: bin-oracle-linux-amd64
path: bin/

- name: Download artifacts from windows-amd64
uses: actions/download-artifact@v4
with:
name: bin-oracle-windows-amd64
path: bin/
pattern: bin-*
merge-multiple: true

- name: Upload to GitHub Releases
run: |
Expand Down

0 comments on commit b668a06

Please sign in to comment.