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 09122e7 commit bf23304Copy full SHA for bf23304
.github/workflows/packing.yml
@@ -334,7 +334,10 @@ jobs:
334
run: make test-pure-install
335
336
publish_rpm:
337
- if: startsWith(github.ref, 'refs/tags')
+ # if: startsWith(github.ref, 'refs/tags')
338
+ if: (github.event_name == 'push') ||
339
+ (github.event_name == 'pull_request' &&
340
+ github.event.pull_request.head.repo.full_name != github.repository)
341
342
needs:
343
- run_tests_rpm
@@ -373,7 +376,7 @@ jobs:
373
376
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
374
377
-F product=python3-tarantool $(FILE_FLAGS) -u $RWS_AUTH
375
378
env:
- RWS_REPO: https://rws.tarantool.org
379
+ RWS_REPO: https://rws-dev.tarantool.org
380
RWS_AUTH: ${{ secrets.RWS_AUTH }}
381
OS: ${{ matrix.target.os }}
382
DIST: ${{ matrix.target.dist }}
0 commit comments