diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 02d5cb6b..0bb2cf39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ on: default: false jobs: - prod-container-build: + prod-container-with-docker: permissions: contents: read packages: write @@ -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