Skip to content

Commit

Permalink
fix Anastasia suggestion. bring back prevent upload logic
Browse files Browse the repository at this point in the history
  • Loading branch information
awestover committed Jul 26, 2023
1 parent 9d34559 commit 411a859
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -944,9 +944,9 @@ jobs:
run: rm -rf ~/.ecr

upload-postgres-extensions-to-s3:
# if: |
# (github.ref_name == 'main' || github.ref_name == 'release') &&
# github.event_name != 'workflow_dispatch'
if: |
(github.ref_name == 'main' || github.ref_name == 'release') &&
github.event_name != 'workflow_dispatch'
runs-on: ${{ github.ref_name == 'release' && fromJSON('["self-hosted", "prod", "x64"]') || fromJSON('["self-hosted", "gen3", "small"]') }}
needs: [ tag, promote-images ]
strategy:
Expand Down
4 changes: 2 additions & 2 deletions scripts/combine_control_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
.split("\n")
)
for file in file_list:
if ".so" in file:
lib_name = file.replace("lib/", "").replace(".so", "")
if file.endswith('.so') and file.startswith("lib/"):
lib_name = file[4:-3]
library_index[lib_name] = extension.name.replace(".tar.zst", "")

all_data = {
Expand Down

0 comments on commit 411a859

Please sign in to comment.