diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 21d0b60a7..e066b1ffc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -57,19 +57,19 @@ jobs: max_attempts: 3 command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release - name: Tag images as latest - uses: nick-invision/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2 + uses: nick-invision/retry@master with: timeout_minutes: 20 max_attempts: 3 command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make tag_latest - name: Deploy latest tag - uses: nick-invision/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2 + uses: nick-invision/retry@master with: timeout_minutes: 20 max_attempts: 3 command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release_latest - name: Tag browser images - uses: nick-invision/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2 + uses: nick-invision/retry@master with: timeout_minutes: 20 max_attempts: 3 @@ -88,12 +88,12 @@ jobs: run: ./generate_release_notes.sh ${LATEST_TAG} origin/trunk ${GRID_VERSION} ${BUILD_DATE} - name: Create Release id: create_release - uses: actions/create-release@v1 + uses: ncipollo/release-action@main env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ env.GRID_VERSION }}-${{ env.BUILD_DATE }} - release_name: ${{ env.GRID_VERSION }}-${{ env.BUILD_DATE }} - body_path: release_notes.md - draft: false + tag: ${{ env.GRID_VERSION }}-${{ env.BUILD_DATE }} + name: ${{ env.GRID_VERSION }}-${{ env.BUILD_DATE }} + bodyFile: "release_notes.md" + generateReleaseNotes: true prerelease: ${{ env.PRERELEASE }} diff --git a/.github/workflows/helm-chart-release.yml b/.github/workflows/helm-chart-release.yml index 252ca1840..f847f9b33 100644 --- a/.github/workflows/helm-chart-release.yml +++ b/.github/workflows/helm-chart-release.yml @@ -25,5 +25,7 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 + with: + mark_as_latest: false env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index d71eb25f1..37bf11004 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -72,6 +72,8 @@ jobs: - name: Create Nightly Release id: create_release uses: ncipollo/release-action@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: #artifacts: replacesArtifacts: true