We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 076cfdb commit cfa3f4cCopy full SHA for cfa3f4c
1 file changed
.github/workflows/release.yaml
@@ -23,7 +23,7 @@ jobs:
23
matrix:
24
# we build on the oldest ubuntu version for better binary compatibility.
25
branch: [dev,dev2,dev3]
26
- os: [windows-latest, macOS-latest, ubuntu-22.04]
+ os: [macOS-latest, ubuntu-22.04] # windows-latest,
27
28
steps:
29
# Checkout: https://github.com/actions/checkout
@@ -35,11 +35,15 @@ jobs:
35
# Build
36
- name: Build (Windows)
37
if: runner.os == 'Windows'
38
- run: ./bin/bundle.bat
+ run: |
39
+ git fetch --tags
40
+ ./bin/bundle.bat
41
42
- name: Build (Linux, macOS)
43
if: runner.os != 'Windows'
- run: ./bin/bundle.sh
44
45
46
+ ./bin/bundle.sh
47
48
# Create a release: https://github.com/softprops/action-gh-release (MIT license)
49
- name: Release
0 commit comments