Skip to content

Commit 50d6376

Browse files
authored
Merge pull request #109 from acheronfail/ci/0.16.0
ci: fixup windows build
2 parents 3e5cf42 + fae1266 commit 50d6376

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
# Emit backtraces on panics.
6868
RUST_BACKTRACE: 1
6969
strategy:
70+
fail-fast: false
7071
matrix:
7172
build: [linux-gnu, linux-musl, linux-arm-gnueabihf, macos, win-msvc, win-gnu, win32-msvc]
7273
include:
@@ -197,7 +198,7 @@ jobs:
197198
shell: bash
198199
run: |
199200
outdir="$(ci/cargo-out-dir.sh "${{ env.TARGET_DIR }}")"
200-
if [ "${{ matrix.os }}" != "windows-2019" ]; then
201+
if [ "${{ matrix.os }}" != "windows-2022" ]; then
201202
asciidoctor --doctype manpage --backend manpage --destination-dir "$outdir" doc/rgr.1.template
202203
fi
203204
staging="repgrep-${{ env.RELEASE_VERSION }}-${{ matrix.target }}"
@@ -211,7 +212,7 @@ jobs:
211212
cp {LICENSE-*,CHANGELOG.md,README.md} "$staging/doc/"
212213
cp "$outdir"/{_rgr,rgr.bash,rgr.fish,_rgr.ps1} "$staging/complete/"
213214
214-
if [ "${{ matrix.os }}" = "windows-2019" ]; then
215+
if [ "${{ matrix.os }}" = "windows-2022" ]; then
215216
cp "target/release/rgr.exe" "$staging/"
216217
7z a "$staging.zip" "$staging"
217218
echo "ASSET=$staging.zip" >> $GITHUB_ENV

0 commit comments

Comments
 (0)