Skip to content

Commit 615448e

Browse files
committed
fix(ci): temporarily disable changelog upon release
1 parent 7b29013 commit 615448e

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,17 @@ jobs:
101101
aws ssm put-parameter --name "powertools-python-release-version" --value $RELEASE_VERSION --overwrite
102102
aws codepipeline start-pipeline-execution --name ${{ secrets.AWS_SAR_PIPELINE_NAME }}
103103
104-
changelog:
105-
needs: release
106-
permissions:
107-
contents: write
108-
uses: ./.github/workflows/reusable_publish_changelog.yml
104+
# NOTE: `event` type brings a detached head failing git setup
105+
# and reusable workflows only work as a standalone job
106+
# meaning we need to research for a solution that works for non-detached and detached mode
107+
# changelog:
108+
# needs: release
109+
# permissions:
110+
# contents: write
111+
# uses: ./.github/workflows/reusable_publish_changelog.yml
109112

110113
docs:
111-
needs: [release, changelog]
114+
needs: release
112115
permissions:
113116
contents: write
114117
pages: write

0 commit comments

Comments
 (0)