diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index d738e14..fed1231 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -40,6 +40,7 @@ jobs: bump_version_and_tag: if: "!startsWith(github.event.head_commit.message, 'bump:')" + #if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'bump:')" name: Bump version and tag on main runs-on: ubuntu-latest steps: @@ -47,7 +48,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - ssh-key: "${{ secrets.COMMIT_KEY }}" + token: "${{ secrets.GITHUB_TOKEN }}" - name: Create bump and changelog uses: commitizen-tools/commitizen-action@master with: @@ -55,7 +56,10 @@ jobs: - name: Print Version run: echo "Bumped to version ${{ steps.cz.outputs.version }}" - name: Push using ssh + #if: github.event_name == 'push' run: | + git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" + git config --global user.email "ruelj2@users.noreply.github.com" git push --tags build_wheels: @@ -65,6 +69,7 @@ jobs: strategy: matrix: os: [macos-14] + #os: [ubuntu-latest, windows-latest, macos-13, macos-14] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5