Skip to content

Commit

Permalink
fix(colab): set unique path for constructor script
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Mar 8, 2024
1 parent 154b248 commit b37ee62
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/colab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,17 @@ jobs:
source $CONDA/etc/profile.d/conda.sh
conda activate constructor
set -x
mkdir -p scripts/
mkdir -p constructorscript/
conda list
CONDA_SOLVER=libmamba CONDA_VERBOSITY=1 CONDA_OVERRIDE_CUDA="12.2" constructor conda/colab/ --output-dir=scripts/
CONDA_SOLVER=libmamba CONDA_VERBOSITY=1 CONDA_OVERRIDE_CUDA="12.2" constructor conda/colab/ --output-dir=constructorscript/
- name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@55bd3a7c6e2ae7cf1877fd1ccb9d54c0503c457c" # ratchet:google-github-actions/auth@v2
with:
credentials_json: "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_DATA }}"
- name: "Upload environment to GCS"
uses: "google-github-actions/upload-cloud-storage@e95a15f226403ed658d3e65f40205649f342ba2c" # ratchet:google-github-actions/upload-cloud-storage@v1
uses: "google-github-actions/upload-cloud-storage@22121cd842b0d185e042e28d969925b538c33d77" # ratchet:google-github-actions/upload-cloud-storage@v2
with:
path: "scripts"
destination: "pyrovelocity/data"
path: "constructorscript"
destination: "pyrovelocity/data/scripts"
parent: false
glob: "*.sh"

0 comments on commit b37ee62

Please sign in to comment.