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 7e9f53c commit b774b58Copy full SHA for b774b58
1 file changed
.github/workflows/test-and-publish.yaml
@@ -383,7 +383,7 @@ jobs:
383
# Publish to ⊇istributive's archive server (https://archive.distributed.computer/releases/pythonmonkey/)
384
needs: [build-and-test, sdist]
385
runs-on: ubuntu-20.04
386
- if: ${{ (success() || failure()) && true }} # (github.ref_name == 'main' || github.ref_type == 'tag')
+ if: ${{ (success() || failure()) && (github.ref_name == 'main' || github.ref_type == 'tag') }}
387
environment:
388
name: archive
389
url: https://archive.distributed.computer/releases/pythonmonkey/${{ steps.get_path.outputs.ARCHIVE_PATH }}
@@ -420,3 +420,4 @@ jobs:
420
key: ${{ secrets.ARCHIVE_KEY }}
421
source: ./*
422
target: archive/${{ steps.get_path.outputs.ARCHIVE_PATH }}
423
+ overwrite: true
0 commit comments