infra: tag non-langchain releases (#20805)

This commit is contained in:
Erick Friis 2024-04-30 09:15:46 -07:00 committed by GitHub
parent c8f18a2524
commit efe27ef849
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -308,3 +308,13 @@ jobs:
generateReleaseNotes: true generateReleaseNotes: true
tag: v${{ needs.build.outputs.version }} tag: v${{ needs.build.outputs.version }}
commit: ${{ github.sha }} commit: ${{ github.sha }}
- name: Create Tag
uses: ncipollo/release-action@v1
if: ${{ inputs.working-directory != 'libs/langchain' }}
with:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: false
tag: ${{needs.build.outputs.pkg-name}}==${{ needs.build.outputs.version }}
body: "# Release ${{needs.build.outputs.pkg-name}}==${{ needs.build.outputs.version }}\n\nPackage-specific release note generation coming soon."
commit: ${{ github.sha }}