From 7aebbd2ef967900edda541c303d04a2b7e5190e3 Mon Sep 17 00:00:00 2001 From: drbh Date: Tue, 21 May 2024 18:35:43 +0000 Subject: [PATCH] fix: debug cwd after build --- .github/workflows/python-packaging.yaml | 42 ++++++++++++------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/python-packaging.yaml b/.github/workflows/python-packaging.yaml index 26b138a3..8161ab56 100644 --- a/.github/workflows/python-packaging.yaml +++ b/.github/workflows/python-packaging.yaml @@ -166,27 +166,27 @@ jobs: - name: Log Built Wheels run: | - ls dist + ls - - name: Get the tag version - id: extract_branch - run: echo ::set-output name=branch::${GITHUB_REF#refs/tags/} + # - name: Get the tag version + # id: extract_branch + # run: echo ::set-output name=branch::${GITHUB_REF#refs/tags/} - - name: Get Release with tag - id: get_current_release - uses: joutvhu/get-release@v1 - with: - tag_name: ${{ steps.extract_branch.outputs.branch }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # - name: Get Release with tag + # id: get_current_release + # uses: joutvhu/get-release@v1 + # with: + # tag_name: ${{ steps.extract_branch.outputs.branch }} + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Upload Release Asset - id: upload_release_asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.get_current_release.outputs.upload_url }} - asset_path: ./dist/${{env.wheel_name}} - asset_name: ${{env.wheel_name}} - asset_content_type: application/* + # - name: Upload Release Asset + # id: upload_release_asset + # uses: actions/upload-release-asset@v1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # with: + # upload_url: ${{ steps.get_current_release.outputs.upload_url }} + # asset_path: ./dist/${{env.wheel_name}} + # asset_name: ${{env.wheel_name}} + # asset_content_type: application/*