Skip to content

Commit

Permalink
Merge pull request #606 from microsoftgraph/bugfix/create-release
Browse files Browse the repository at this point in the history
chore: removes unnecessary release step handled by release please
  • Loading branch information
baywet authored Jun 20, 2024
2 parents 59d6247 + a1adb0f commit 6816fc3
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10

permissions:
contents: write

jobs:
build:
uses: ./.github/workflows/build.yml
Expand Down Expand Up @@ -36,18 +33,3 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

release:
name: Create release
runs-on: ubuntu-latest
needs: [publish]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v2
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create --notes '${{ steps.extract-release-notes.outputs.release_notes }}' --title ${{ github.ref_name }} ${{ github.ref_name }}

0 comments on commit 6816fc3

Please sign in to comment.