Skip to content

Commit

Permalink
remove more illegal characters
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphall committed Sep 26, 2024
1 parent b7398e4 commit 0ab4fd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
run: |
PREFIX="output_image=${GITHUB_REPOSITORY}:${SERIES}"
echo "${PREFIX}-${OS}-${REPO}" >> ${GITHUB_OUTPUT}
echo "base_tag=${SERIES}-${OS}-${REPO}" >> ${GITHUB_OUTPUT}
echo "registry_image=hub.opensciencegrid.org/${GITHUB_REPOSITORY}" >> ${GITHUB_OUTPUT}
- id: slash-escape
run: |
platform=${{ matrix.platform }}
output_image=${{ steps.custom-image-name.outputs.output_image }}
echo "platform=${platform//\//-}" >> ${GITHUB_OUTPUT}
echo "output_image=${output_image//\//-}" >> ${GITHUB_OUTPUT}
- name: Harbor login
# if: >-
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: digests-${{ steps.slash-escape.outputs.output_image }}-${{ steps.slash-escape.outputs.platform }}
name: digests-${{ steps.custom-image-name.outputs.base_tag }}-${{ steps.slash-escape.outputs.platform }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Upload tags
uses: actions/upload-artifact@v4
with:
name: tags-${{ steps.slash-escape.outputs.output_image }}-${{ steps.slash-escape.outputs.platform }}
name: tags-${{ steps.custom-image-name.outputs.base_tag }}-${{ steps.slash-escape.outputs.platform }}
path: /tmp/tags/*
if-no-files-found: error
retention-days: 1
Expand Down

0 comments on commit 0ab4fd7

Please sign in to comment.