Skip to content

Commit

Permalink
set fail_fast=False
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvinn Ng committed May 2, 2024
1 parent 7921568 commit 6deeff7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
name: Build on ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
include:
- platform: ubuntu-latest
Expand All @@ -32,7 +33,7 @@ jobs:

- name: Install dependencies
run: |
if [ "${{ matrix.os }}" = "win32" ]; then
if [ "${{ matrix.platform }}" = "windows-latest" ]; then
pwsh install-dependencies.ps1
else
bash install-dependencies.sh
Expand All @@ -45,5 +46,5 @@ jobs:
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: ahrefs-continue-patch.vsix
name: ahrefs-continue-${{ matrix.platform }}.vsix
path: extensions/vscode/build

0 comments on commit 6deeff7

Please sign in to comment.