Skip to content

Commit

Permalink
feat: indipendent fail
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Nov 12, 2024
1 parent 3e7e58b commit 3272b5a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
contents: read
packages: write
runs-on: ubuntu-latest
continue-on-error: true # Allow this job to fail without stopping others
outputs:
success: ${{ steps.build.outcome == 'success' }}
version: ${{ steps.set_version.outputs.VERSION }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -55,6 +59,7 @@ jobs:
fi
- name: Build and push AMD64
id: build
uses: docker/build-push-action@v6
with:
context: .
Expand All @@ -69,6 +74,10 @@ jobs:
contents: read
packages: write
runs-on: ubuntu-latest
continue-on-error: true # Allow this job to fail without stopping others
outputs:
success: ${{ steps.build.outcome == 'success' }}
version: ${{ steps.set_version.outputs.VERSION }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -102,6 +111,7 @@ jobs:
fi
- name: Build and push ARM64
id: build
uses: docker/build-push-action@v6
with:
context: .
Expand Down

0 comments on commit 3272b5a

Please sign in to comment.