We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a38cc commit d7f4e9eCopy full SHA for d7f4e9e
1 file changed
.github/workflows/build.yml
@@ -64,22 +64,21 @@ jobs:
64
git push origin "$tag"
65
fi
66
67
- # build_windows:
68
- # needs: prepare
69
- # uses: ./.github/workflows/build-window.yml
70
- # with:
71
- # version: ${{ needs.prepare.outputs.version }}
+ build_windows:
+ needs: prepare
+ uses: ./.github/workflows/build-window.yml
+ with:
+ version: ${{ needs.prepare.outputs.version }}
72
73
build_linux:
74
- #needs: build_windows
75
- needs: prepare
+ needs: build_windows
76
uses: ./.github/workflows/build-linux.yml
77
with:
78
version: ${{ needs.prepare.outputs.version }}
79
80
release:
81
needs:
82
- #- build_windows
+ - build_windows
83
- build_linux
84
- prepare
85
uses: ./.github/workflows/create-release.yml
0 commit comments