Skip to content

Commit e7491bd

Browse files
committed
ci: fix build workflow
1 parent 1fb797c commit e7491bd

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/build.yaml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,24 @@ jobs:
3232
name: bin-${{ matrix.os }}
3333
path: build/${{ matrix.os }}
3434

35-
release:
36-
needs: build_changelog_cli
37-
name: Create GitHub Release
38-
runs-on: ubuntu-latest
39-
steps:
40-
- uses: actions/download-artifact@v2
41-
with:
42-
name: bin-ubuntu-latest
43-
path: bin-linux
44-
- uses: actions/download-artifact@v2
45-
with:
46-
name: bin-macos-latest
47-
path: bin-macos
48-
- uses: actions/download-artifact@v2
49-
with:
50-
name: bin-windows-latest
51-
path: bin-windows
52-
- uses: softprops/action-gh-release@v1
53-
with:
54-
draft: true
55-
files: bin-*/*
35+
upload_artifacts:
36+
needs: build_changelog_cli
37+
name: Create GitHub Release and Upload Artifacts
38+
runs-on: ubuntu-latest
39+
steps:
40+
- uses: actions/download-artifact@v2
41+
with:
42+
name: bin-ubuntu-latest
43+
path: bin-linux
44+
- uses: actions/download-artifact@v2
45+
with:
46+
name: bin-macos-latest
47+
path: bin-macos
48+
- uses: actions/download-artifact@v2
49+
with:
50+
name: bin-windows-latest
51+
path: bin-windows
52+
- uses: softprops/action-gh-release@v1
53+
with:
54+
draft: true
55+
files: bin-*/*

0 commit comments

Comments
 (0)