From a3b7f276cc97afb8c7fbdad3509da9749d932c5c Mon Sep 17 00:00:00 2001 From: zyachel Date: Sat, 11 Feb 2023 22:07:33 +0530 Subject: [PATCH] ci: generate changelogs locally makes the service less dependent on a particular platform --- .github/workflows/release.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index db42193..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: release -on: - push: - branches: - - main - -jobs: - changelog: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: generate changelog and bump version - id: changelog - uses: TriPSs/conventional-changelog-action@v3 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - - - name: create release - uses: actions/create-release@v1 - if: ${{ steps.changelog.outputs.skipped == 'false' }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.changelog.outputs.tag }} - release_name: ${{ steps.changelog.outputs.tag }} - body: ${{ steps.changelog.outputs.clean_changelog }}