Skip to content

Commit 5ca8be6

Browse files
committed
chore: try downloading artifacts from the calling workflow
1 parent fc235b2 commit 5ca8be6

1 file changed

Lines changed: 18 additions & 13 deletions

File tree

.github/workflows/python-release.yaml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)