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 3b28f7c commit d564df6Copy full SHA for d564df6
.github/workflows/packing.yml
@@ -493,7 +493,10 @@ jobs:
493
run: make test-pure-install
494
495
publish_deb:
496
- if: startsWith(github.ref, 'refs/tags')
+ # if: startsWith(github.ref, 'refs/tags')
497
+ if: (github.event_name == 'push') ||
498
+ (github.event_name == 'pull_request' &&
499
+ github.event.pull_request.head.repo.full_name != github.repository)
500
501
needs:
502
- run_tests_deb
@@ -534,7 +537,7 @@ jobs:
534
537
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
535
538
-F product=python3-tarantool $FILE_FLAGS -u ${RWS_AUTH}
536
539
env:
- RWS_REPO: https://rws.tarantool.org
540
+ RWS_REPO: https://rws-dev.tarantool.org
541
RWS_AUTH: ${{ secrets.RWS_AUTH }}
542
OS: ${{ matrix.target.os }}
543
DIST: ${{ matrix.target.dist }}
0 commit comments