We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5b2ae commit 1100eedCopy full SHA for 1100eed
.github/workflows/release.yml
@@ -32,8 +32,12 @@ jobs:
32
run: poetry publish
33
env:
34
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
35
-
+ - name: Wait for package to be available
36
+ run: sleep 10
37
+
38
release:
39
+ needs:
40
+ - release-core
41
runs-on: ubuntu-latest
42
strategy:
43
matrix:
@@ -53,6 +57,9 @@ jobs:
53
57
run: |
54
58
pip install poetry
55
59
poetry --version
60
+ - name: Set local scaleway-core version
61
+ run: poetry version $(echo "${{ github.ref }}" | cut -d "/" -f 3)
62
+ working-directory: scaleway-core
56
63
- name: Set scaleway-core version in the package
64
run: poetry add scaleway-core@$(echo "${{ github.ref }}" | cut -d "/" -f 3)
65
- name: Update lock file
0 commit comments