Skip to content

Commit

Permalink
added conitnue on error for download
Browse files Browse the repository at this point in the history
  • Loading branch information
anurag4DSB committed Nov 14, 2024
1 parent 76de381 commit c532655
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
default: false

jobs:
prod-container-build:
prod-container-with-docker:
permissions:
contents: read
packages: write
Expand All @@ -27,14 +27,17 @@ jobs:

create-github-release:
runs-on: ubuntu-latest
needs: [prod-container-build, package-helm-chart]
needs: [prod-container-with-docker, package-helm-chart]
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
with:
path: ./actions-artifacts
github-token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit c532655

Please sign in to comment.