Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrated from "marvinpinto/action-automatic-releases" to Officital GIthub Action for creating releases. #6444

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,15 @@ jobs:
with:
fetch-depth: 0
- name: Create GitHub Release
uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0 # v1.2.1
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
prerelease: false
tag_name: ${{github.ref}}
release_name: Release ${{ github.ref }}
body: |
Release notes for ${{ github.ref }}.
prerelease: ${{github.ref}} contains "-rc." || ${{ github.ref }} contains "-alpha." || ${{ github.ref }} contains "-beta."
- uses: ./.github/actions/install-deps
- uses: ./.github/actions/e2e/install-helm
with:
Expand Down Expand Up @@ -68,3 +73,5 @@ jobs:
issue_number: result.data.number,
labels: ['stable-release','website','helm-charts']
});