Skip to content

Commit 9687bb5

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

1 file changed

Lines changed: 14 additions & 13 deletions

File tree

.github/workflows/python-release.yaml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,32 +55,33 @@ 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-
77+
path: impit-python/artifacts
78+
run-id: 14378458029
79+
github-token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
80+
7981
- name: Unzip artifacts
80-
run: |
81-
unzip -o impit-python/dist/*.zip -d impit-python/dist
82+
run: unzip -o artifacts/* -d wheels
8283

8384
- name: List files
8485
run: |
8586
ls -la
86-
ls -la dist
87+
ls -la wheels

0 commit comments

Comments
 (0)