We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 044fa3b commit f69ffc0Copy full SHA for f69ffc0
.github/workflows/packing.yml
@@ -495,7 +495,10 @@ jobs:
495
run: make test-pure-install
496
497
publish_deb:
498
- if: startsWith(github.ref, 'refs/tags')
+ # if: startsWith(github.ref, 'refs/tags')
499
+ if: (github.event_name == 'push') ||
500
+ (github.event_name == 'pull_request' &&
501
+ github.event.pull_request.head.repo.full_name != github.repository)
502
503
needs:
504
- run_tests_deb
@@ -538,7 +541,7 @@ jobs:
538
541
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
539
542
-F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
540
543
env:
- RWS_REPO: https://rws.tarantool.org
544
+ RWS_REPO: https://rws-dev.tarantool.org
545
RWS_AUTH: ${{ secrets.RWS_AUTH }}
546
OS: ${{ matrix.target.os }}
547
DIST: ${{ matrix.target.dist }}
0 commit comments