We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ran the below github action workflow and encountered the subsequent error in the screenshot below that.
name: Create Paperspace Instance on: push: branches: - main jobs: create-instance: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up Paperspace CLI run: | curl -fsSL https://console.paperspace.com/install.sh | sh export PAPERSPACE_INSTALL="/home/runner/.paperspace" export PATH="$PAPERSPACE_INSTALL/bin:$PATH" echo $PATH pspace login --api-key ${{ secrets.PAPERSPACE_API_KEY }} - name: Create Paperspace Instance run: | pspace machines create \ --region "East Coast (NY2)" \ --machineType "GPU+" \ --size 50 \ --template "Ubuntu 22.04" \ --assignPublicIp true \ --apiKey ${{ secrets.PAPERSPACE_API_KEY }} # Additional steps for configuring the instance and running tests can be added here
As shown here:
The text was updated successfully, but these errors were encountered:
fix: accept --api-key flag for login
--api-key
758cf9c
Closes #52
fix: accept --api-key flag for login (#70)
0befc5d
Successfully merging a pull request may close this issue.
Ran the below github action workflow and encountered the subsequent error in the screenshot below that.
As shown here:
The text was updated successfully, but these errors were encountered: