Skip to content

Commit

Permalink
trying to fix --oci-password-variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorier committed Dec 11, 2024
1 parent bba4a20 commit 8ce6115
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ runs:
if: ${{ (inputs.build-cache-token != 'unspecified') && (inputs.push-only-dependencies == 'true') }}
shell: bash
run: |
export BUILD_CACHE_TOKEN=${{ inputs.build-cache-token }}
BUILD_CACHE_TOKEN=${{ inputs.build-cache-token }} \
spack -e myenv buildcache push --base-image ubuntu:22.04 \
--unsigned --only dependencies --update-index mochi-buildcache
- name: Push dependency packages to buildcache and update index
if: ${{ (inputs.build-cache-token != 'unspecified') && (inputs.push-only-dependencies == 'false') }}
shell: bash
run: |
export BUILD_CACHE_TOKEN=${{ inputs.build-cache-token }}
BUILD_CACHE_TOKEN=${{ inputs.build-cache-token }} \
spack -e myenv buildcache push --base-image ubuntu:22.04 \
--unsigned --update-index mochi-buildcache
Expand Down

0 comments on commit 8ce6115

Please sign in to comment.