Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sarahcssiqueira/0f859377cdf41b022ab3b8ab8aac9ca6 to your computer and use it in GitHub Desktop.
Save sarahcssiqueira/0f859377cdf41b022ab3b8ab8aac9ca6 to your computer and use it in GitHub Desktop.
Release Workflow
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