Created
October 2, 2024 17:57
-
-
Save sarahcssiqueira/0f859377cdf41b022ab3b8ab8aac9ca6 to your computer and use it in GitHub Desktop.
Release Workflow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
release: | |
name: Create Release on Tag | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
body: "For changes in this release, see the changelog:" | |
generateReleaseNotes: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment