Skip to content

Commit

Permalink
temp testing
Browse files Browse the repository at this point in the history
  • Loading branch information
axl1313 committed Jan 29, 2025
1 parent a843fa0 commit 19a0716
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

## [...]

0 comments on commit 19a0716

Please sign in to comment.