We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f07786 commit 044fa3bCopy full SHA for 044fa3b
.github/workflows/packing.yml
@@ -331,7 +331,10 @@ jobs:
331
run: make test-pure-install
332
333
publish_rpm:
334
- if: startsWith(github.ref, 'refs/tags')
+ # if: startsWith(github.ref, 'refs/tags')
335
+ if: (github.event_name == 'push') ||
336
+ (github.event_name == 'pull_request' &&
337
+ github.event.pull_request.head.repo.full_name != github.repository)
338
339
needs:
340
- run_tests_rpm
@@ -372,7 +375,7 @@ jobs:
372
375
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
373
376
-F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
374
377
env:
- RWS_REPO: https://rws.tarantool.org
378
+ RWS_REPO: https://rws-dev.tarantool.org
379
RWS_AUTH: ${{ secrets.RWS_AUTH }}
380
OS: ${{ matrix.target.os }}
381
DIST: ${{ matrix.target.dist }}
0 commit comments