aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelene ToyKeeper2023-11-05 16:59:39 -0700
committerSelene ToyKeeper2023-11-05 16:59:39 -0700
commitc1921d90f34594f8f1fd103c8852eeb11498ba81 (patch)
treecb935611f33d98edfeedda9ae0f79f43dc6d0b91
parentMerge branch 'johnou-bugfix/no-simple-ui-error' into trunk (diff)
downloadanduril-c1921d90f34594f8f1fd103c8852eeb11498ba81.tar.gz
anduril-c1921d90f34594f8f1fd103c8852eeb11498ba81.tar.bz2
anduril-c1921d90f34594f8f1fd103c8852eeb11498ba81.zip
fixed invalid characters in github artifact names
This failed just a couple runs after adding CI, giving an error when someone had a slash in their pull request title: Error: Artifact name is not valid: build all-6/merge-4d210ad-8. Contains the following character: Forward slash / But the filename seems plenty unique even without the ${GITHUB_REF_NAME}, so I removed it.
-rw-r--r--.github/workflows/compile.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml
index fabcf31..57d049c 100644
--- a/.github/workflows/compile.yml
+++ b/.github/workflows/compile.yml
@@ -38,7 +38,7 @@ jobs:
- name: Compile All
run: |
./make
- echo "ARTIFACT_NAME=${GITHUB_WORKFLOW}-${GITHUB_REF_NAME}-$(git rev-parse --short ${GITHUB_SHA})-${GITHUB_RUN_NUMBER}" >> "${GITHUB_ENV}"
+ echo "ARTIFACT_NAME=${GITHUB_WORKFLOW}-$(git rev-parse --short ${GITHUB_SHA})-${GITHUB_RUN_NUMBER}" >> "${GITHUB_ENV}"
- name: Store Artifacts
uses: actions/upload-artifact@v3