Skip to content

Commit

Permalink
migrated release.yaml
Browse files Browse the repository at this point in the history
Replaced "marvinpinto/action-automatic-releases" with "actions/create-release".
  • Loading branch information
pa1ncakes committed Jul 2, 2024
1 parent e8a3457 commit 01a5027
Showing 1 changed file with 10 additions and 3 deletions.
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']
});

0 comments on commit 01a5027

Please sign in to comment.