Skip to content

Commit

Permalink
chore: Generate release notes with release-it
Browse files Browse the repository at this point in the history
  • Loading branch information
danidee10 committed Feb 9, 2024
1 parent 5f9d33a commit dd5eddf
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
name: Upload Python Package

on:
release:
types: [created]
workflow_run:
workflows: [Release]
types:
- completed

jobs:
deploy:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: mkdir -p .yarn/cache
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn set version 3.6.1
- run: yarn install
- run: git config --global user.name "${GITHUB_ACTOR}"
- run: git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx release-it --ci

0 comments on commit dd5eddf

Please sign in to comment.