Skip to content

Commit

Permalink
Specify workspace when logging in
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Aug 28, 2024
1 parent 2d1939c commit 40ce869
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: coiled/login-action@v1
with:
token: ${{ secrets.PROD_TEST_BOT_TOKEN }}
workspace: aws-vm-self-hosted-nuked-testbot-account

- name: Coiled Run
uses: ./
Expand Down
11 changes: 7 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,17 @@ runs:
- uses: actions/checkout@v4
- name: Install conda environment
uses: mamba-org/setup-micromamba@v1
env:
PYTHON_VERSION: 3.12
COILED_VERSION: 1.45.0
with:
cache-downloads-key: coiled-run-downloads-${{ runner.arch }}
cache-environment-key: coiled-run-env-${{ runner.arch }}
cache-downloads-key: coiled-run-downloads-${{ runner.arch }}-${{ envs.PYTHON_VERSION }}-${{ envs.COILED_VERSION }}
cache-environment-key: coiled-run-env-${{ runner.arch }}-${{ envs.PYTHON_VERSION }}-${{ envs.COILED_VERSION }}
generate-run-shell: false
environment-name: coiled-run
create-args: >-
python=3.12
coiled=1.45.0
python=${{ envs.PYTHON_VERSION }}
coiled=${{ envs.COILED_VERSION }}
- name: Run coiled run
shell: bash
Expand Down

0 comments on commit 40ce869

Please sign in to comment.