From 19a0716b462fe975378bc4c7ccff8230f20ea75d Mon Sep 17 00:00:00 2001 From: Angela Date: Wed, 29 Jan 2025 13:21:32 -0800 Subject: [PATCH] temp testing --- .github/workflows/release.yml | 18 +++++++++++------- CHANGELOG.md | 10 +++++++--- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f57219..f871ae3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,18 +2,18 @@ name: Build and publish package on: push: tags: - - 'v*' + - 'v*.*.*' concurrency: group: ${{ github.workflow }}-${{ github.ref }} jobs: - tests: - uses: ./.github/workflows/ci.yml + # tests: + # uses: ./.github/workflows/ci.yml build: name: Build package and upload artifacts - needs: tests + # needs: tests runs-on: ubuntu-latest steps: - name: Checkout code @@ -55,8 +55,8 @@ jobs: with: name: cleanlab-codex path: dist - - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 + # - name: Publish to PyPI + # uses: pypa/gh-action-pypi-publish@release/v1 upload-release: name: Upload release to GitHub @@ -70,6 +70,10 @@ jobs: - name: Extract release notes id: extract-release-notes uses: ffurrer2/extract-release-notes@v2 + with: + prerelease: true + - run: | + echo "Release notes: ${{ steps.extract-release-notes.outputs.release_notes }}" - name: Download artifacts uses: actions/download-artifact@v4 with: @@ -79,5 +83,5 @@ jobs: uses: softprops/action-gh-release@v1 with: files: dist/* - body: ${{ steps.extract-release-notes.outputs.release-notes }} + body: ${{ steps.extract-release-notes.outputs.release_notes }} draft: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 32efbe3..49b021a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ -## Unreleased +# Changelog -## v0.1.0a0 +## [Unreleased] -Initial pre-release of the Cleanlab Codex Python client. +### Added + +- Initial release of the Cleanlab Codex Python client. + +## [...] \ No newline at end of file