Skip to content

Commit

Permalink
Merge branch 'Next-Flip:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Spooks4576 authored Mar 10, 2024
2 parents 8e97587 + 1f49d82 commit e07f3f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
echo "ARTIFACT_TAG=$ARTIFACT_TAG" >> $GITHUB_ENV
- name: "Upload artifacts to update server"
if: ${{ !github.event.pull_request.head.repo.fork }} && !contains(github.event.head_commit.message, '--nobuild')
if: ${{ !github.event.pull_request.head.repo.fork && !contains(github.event.head_commit.message, '--nobuild') }}
run: |
FILES=$(for ARTIFACT in $(find artifacts -maxdepth 1 -not -type d); do echo "-F files=@${ARTIFACT}"; done)
curl --fail -L -H "Token: ${{ secrets.INDEXER_TOKEN }}" \
Expand Down
5 changes: 1 addition & 4 deletions scripts/get_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@ def get_details(event, args):
data["commit_sha"] = data["commit_hash"][:8]
data["branch_name"] = re.sub("refs/\w+/", "", ref)
data["suffix"] = (
"mntm-" +
data["branch_name"].replace("/", "_")
+ "-"
+ data["commit_sha"]
"mntm-" + data["branch_name"].replace("/", "_") + "-" + data["commit_sha"]
)
if ref.startswith("refs/tags/"):
data["suffix"] = data["branch_name"].replace("/", "_")
Expand Down

0 comments on commit e07f3f5

Please sign in to comment.