File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,32 +55,37 @@ jobs:
5555 run : |
5656 echo "New version is ${{ steps.increment_version.outputs.new_version }}"
5757
58- test :
59- needs : [get_version]
60- name : Build and test
61- uses : ./.github/workflows/python-test.yaml
62- secrets : inherit
63- with :
64- version : ${{ needs.get_version.outputs.new_version }}
58+ # test:
59+ # needs: [get_version]
60+ # name: Build and test
61+ # uses: ./.github/workflows/python-test.yaml
62+ # secrets: inherit
63+ # with:
64+ # version: ${{ needs.get_version.outputs.new_version }}
6565
6666 publish :
6767 defaults :
6868 run :
6969 working-directory : impit-python
7070 name : Publish
7171 runs-on : ubuntu-latest
72- needs : [test]
72+ # needs: [test]
7373 steps :
7474 - name : Download all artifacts
7575 uses : actions/download-artifact@v4
7676 with :
77- path : impit-python/dist
78-
79- - name : Unzip artifacts
77+ path : impit-python/artifacts
78+ run-id : 14378458029
79+ github-token : ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
80+
81+ - name : List files
8082 run : |
81- unzip -o impit-python/dist/*.zip -d impit-python/dist
83+ ls -lR
84+
85+ - name : Unzip artifacts
86+ run : unzip -o artifacts/* -d wheels
8287
8388 - name : List files
8489 run : |
8590 ls -la
86- ls -la dist
91+ ls -la wheels
You can’t perform that action at this time.
0 commit comments