diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e1cb0f5..144c0091 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,32 +25,12 @@ jobs: tag: ${{ inputs.tag }} platforms: ${{ inputs.all_platforms && 'linux/amd64,linux/arm64' || 'linux/amd64' }} - create-changelog: - runs-on: ubuntu-latest - needs: prod-container-build - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Generate Changelog - run: echo "# Release Changelog for ${GITHUB_REF_NAME}" > changelog.txt - - - name: Upload Changelog as Artifact - uses: actions/upload-artifact@v4 - with: - name: changelog - path: changelog.txt - create-github-release: runs-on: ubuntu-latest - needs: [create-changelog, package-helm-chart] + needs: [package-helm-chart, package-helm-chart] steps: - - name: Check out repository - uses: actions/checkout@v4 - - - name: Download Changelog Artifact - uses: actions/download-artifact@v4 - with: - name: changelog + # - name: Check out repository + # uses: actions/checkout@v4 - name: Upload Assets and Create GitHub Release uses: softprops/action-gh-release@v2 @@ -85,10 +65,6 @@ jobs: ``` helm template oci://ghcr.io/${{ github.repository }}/helm-charts/scality-cosi-driver --version ${{ inputs.tag }} ``` - - ### Changelog: - $(cat changelog.txt) # Includes the changelog content - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}