From 80ce114663f8837e2747da29ed14bf2817d60b0f Mon Sep 17 00:00:00 2001 From: Muhammad Hamza Date: Fri, 25 Nov 2022 15:45:50 +0500 Subject: [PATCH] Do not commit and push changelog during release (#2977) This is done prior to the release --- .github/workflows/publish-yew.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/publish-yew.yml b/.github/workflows/publish-yew.yml index 7dddeec75db..858a1ab6de9 100644 --- a/.github/workflows/publish-yew.yml +++ b/.github/workflows/publish-yew.yml @@ -42,22 +42,6 @@ jobs: crate: cargo-release version: 0.18.5 - - name: Build changelog generator - run: cargo build --release -p changelog - working-directory: tools - - - name: Generate changelog - uses: mathiasvr/command-output@v1 - id: changelog - with: - run: ./target/release/changelog yew ${{ github.event.inputs.level }} -t ${{ secrets.GITHUB_TOKEN }} - - - name: Commit changelog - run: | - git add CHANGELOG.md - git commit -m "update CHANGELOG.md for yew release" - git push origin master - - name: Release yew-macro run: cargo release ${PUBLISH_LEVEL} --token ${CRATES_TOKEN} --execute --no-confirm --package yew-macro env: