Skip to content

Commit ca088d9

Browse files
Corrige a arquitetura para x86_64 para amd64 e adiciona condição de sucesso na etapa de publicação
1 parent f5b7783 commit ca088d9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-and-release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@ jobs:
1111
name: Build and Test
1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
include:
1617
- os: darwin
17-
arch: x86_64
18+
arch: amd64
1819
- os: darwin
1920
arch: arm64
2021
- os: linux
2122
arch: amd64
2223
- os: linux
2324
arch: arm64
2425
- os: windows
25-
arch: x86_64
26+
arch: amd64
2627
- os: windows
2728
arch: arm64
2829

@@ -56,6 +57,7 @@ jobs:
5657
publish:
5758
name: Publish Release
5859
needs: build
60+
if: success()
5961
runs-on: ubuntu-latest
6062
permissions:
6163
contents: write

0 commit comments

Comments
 (0)