Skip to content

Commit cfa3f4c

Browse files
committed
workflow fixes
1 parent 076cfdb commit cfa3f4c

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/release.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
matrix:
2424
# we build on the oldest ubuntu version for better binary compatibility.
2525
branch: [dev,dev2,dev3]
26-
os: [windows-latest, macOS-latest, ubuntu-22.04]
26+
os: [macOS-latest, ubuntu-22.04] # windows-latest,
2727

2828
steps:
2929
# Checkout: https://github.com/actions/checkout
@@ -35,11 +35,15 @@ jobs:
3535
# Build
3636
- name: Build (Windows)
3737
if: runner.os == 'Windows'
38-
run: ./bin/bundle.bat
38+
run: |
39+
git fetch --tags
40+
./bin/bundle.bat
3941
4042
- name: Build (Linux, macOS)
4143
if: runner.os != 'Windows'
42-
run: ./bin/bundle.sh
44+
run: |
45+
git fetch --tags
46+
./bin/bundle.sh
4347
4448
# Create a release: https://github.com/softprops/action-gh-release (MIT license)
4549
- name: Release

0 commit comments

Comments
 (0)