Skip to content

Commit 6b06036

Browse files
committed
continue regardless of platform build fail
1 parent b23dec1 commit 6b06036

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
@@ -30,19 +30,20 @@ jobs:
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3232
with:
33-
tag_name: ${{ github.ref }}
33+
tag_name: ${{ github.ref_name || github.ref }}
3434
release_name: ${{ github.event.inputs.release_name }}
3535
body: ${{ github.event.inputs.release_notes }}
3636
draft: ${{ github.event.inputs.release_type == 'draft' }} # not visible to the public
3737
prerelease: ${{ github.event.inputs.release_type == 'private' }} # visible only to collaborators
3838

3939
build:
40-
name: Build and Upload Artifacts
40+
name: Build for ${{ matrix.os }} and Upload Artifacts
4141
needs: create_release
4242
runs-on: ${{ matrix.os }}
4343
strategy:
4444
matrix:
4545
os: [ubuntu-latest, macos-latest, windows-latest] # builds for each platform, in seperate vm's, in this order
46+
continue-on-error: true
4647
steps:
4748
- name: Checkout code
4849
uses: actions/checkout@v4

0 commit comments

Comments
 (0)