Skip to content

Commit

Permalink
Merge branch 'master' into empty-frontier
Browse files Browse the repository at this point in the history
  • Loading branch information
andracc committed Nov 15, 2024
2 parents 7d6458c + b2e6fb4 commit fd7b229
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,10 @@ jobs:
egress-policy: block
allowed-endpoints: >
api.github.com:443
api.codecov.io:443
cli.codecov.io:443
codecov.io:443
github.com:443
ingest.codecov.io:443
storage.googleapis.com:443
uploader.codecov.io:443
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Download coverage artifact
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,10 @@ jobs:
egress-policy: block
allowed-endpoints: >
api.github.com:443
api.codecov.io:443
cli.codecov.io:443
codecov.io:443
github.com:443
ingest.codecov.io:443
storage.googleapis.com:443
uploader.codecov.io:443
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Download coverage artifact
Expand Down
2 changes: 1 addition & 1 deletion deploy/scripts/app_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_release() -> str:
num_commits = match[2]
# Get the branch name
result = run_cmd(["git", "branch", "--show-current"], chomp=True)
branch_name = re.sub("[/_]+", "-", result.stdout)
branch_name = re.sub("[/_]+", "-", result.stdout) or "HEADLESS"
return f"{release_string}-{branch_name}.{num_commits}"
message = f"Unrecognized release value in tag: {result.stdout}"
raise ValueError(message)
Expand Down

0 comments on commit fd7b229

Please sign in to comment.