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