Skip to content

Commit

Permalink
Merge pull request #3 from simonsobs:actions
Browse files Browse the repository at this point in the history
Generate a release note on release
  • Loading branch information
TaiSakuma authored Oct 19, 2023
2 parents 1133363 + 24a5b1e commit c64515d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
changelog:
categories:
- title: Changes 🚀
labels:
- "*"
16 changes: 13 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,21 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
uses: actions/checkout@v3
- name: Install gh CLI
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Create Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create ${GITHUB_REF#refs/tags/} \
--generate-notes
- name: Tag latest
uses: EndBug/latest-tag@v1

0 comments on commit c64515d

Please sign in to comment.