Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Paperspace/deploy-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Paperspace Deployment Action

A GitHub action for deploying updates to a Paperspace deployment.

Inputs

Input Type Required? Description
projectId string Yes The ID of the project the deployment lives under
apiKey string No Your Paperspace API key. This may also be set using the PAPERSPACE_API_KEY environment variable.
configPath string No The relative file path of the configuration file.
image string No Container image to be used in the configuration

Usage

uses: paperspace/deploy-action@v1.4
env:
 PAPERSPACE_API_KEY: ${{ secrets.PAPERSPACE_API_KEY }}
with:
 projectId: p28rlnvnw51

You can also pass the api key as an input.

uses: paperspace/deploy-action@v1.4
with:
 apiKey: ${{ secrets.PAPERSPACE_API_KEY }}
 projectId: p28rlnvnw51

Providing an image as an input

Mark the image as replacable using :image within your .paperspace/app.yaml.

enabled: true
name: Demo
image: :image
port: 8888
resources:
 replicas: 1
 instanceType: P4000
uses: paperspace/deploy-action@v1.4
env:
 PAPERSPACE_API_KEY: ${{ secrets.PAPERSPACE_API_KEY }}
with:
 image: paperspace/deployment-fixture:${{ steps.docker-tag-name.outputs.DOCKER_TAG_NAME }})
 projectId: p28rlnvnw51

Example of a complete workflow

name: test-pr
on:
 pull_request:
 paths:
 - "*"
jobs:
 release:
 name: Release
 runs-on: ubuntu-latest
 steps:
 - uses: actions/checkout@v3
 - uses: paperspace/deploy-action@v1.4
 name: Deploy Staging
 id: deploy
 env:
 PAPERSPACE_API_KEY: ${{ secrets.PAPERSPACE_API_KEY }}
 with:
 projectId: p28rlnvnw51
 image: nginx:latest

Example of a complete build and deploy

An example of building a custom image and syncing the deployment to Paperspace after pushing to a container registry.

name: fixture-release
on:
 push:
 tags:
 - deployment-fixture@*
jobs:
 release:
 name: Release
 runs-on: ubuntu-latest
 steps:
 - uses: actions/checkout@v3
 - name: Set docker tag name
 run: echo "::set-output name=DOCKER_TAG_NAME::$(echo $GITHUB_REF | cut -d / -f 3 | sed 's/deployment-fixture@//')"
 id: docker-tag-name
 - name: Set up docker build
 uses: docker/setup-buildx-action@v1
 - name: Login to DockerHub
 uses: docker/login-action@v1
 with:
 username: ${{ secrets.DOCKERHUB_USERNAME }}
 password: ${{ secrets.DOCKERHUB_TOKEN }}
 - name: Build and push
 uses: docker/build-push-action@v2
 with:
 file: Dockerfile
 push: true
 tags: |
 paperspace/deployment-fixture:${{ steps.docker-tag-name.outputs.DOCKER_TAG_NAME }}

 - uses: paperspace/deploy-action@v1.4
 name: Deploy to Paperspace
 id: deploy
 env:
 PAPERSPACE_API_KEY: ${{ secrets.PAPERSPACE_API_KEY }}
 with:
 projectId: ptzm6ujwqwa
 image: paperspace/deployment-fixture:${{ steps.docker-tag-name.outputs.DOCKER_TAG_NAME }}

Configuration paths

You may supply an optional relative path to a Paperspace config as follows:

- uses: paperspace/deploy-action@v1.4
 name: Deploy action
 id: deploy
 env:
 PAPERSPACE_API_KEY: ${{ secrets.PAPERSPACE_API_KEY }}
 with:
 projectId: p28rlnvnw51
 configPath: ./random/paperspace.jsonc
 image: paperspace/deployment-fixture

By default, the action looks for a config file in order of precedence:

  • paperspace.yaml
  • paperspace.yml
  • paperspace.json
  • paperspace.jsonc
  • paperspace.toml
  • .paperspace/app.yaml
  • .paperspace/app.yml
  • .paperspace/app.json
  • .paperspace/app.jsonc
  • .paperspace/app.toml

File extensions

.json, .jsonc, .toml, .yaml, .yml are all supported.

Default apiVersion

Deployments allow for versioned deployment specs. Example:

enabled: true,
name: Demo
apiVersion: v0alpha1
...

These versions are not required. If a version is not supplied in the deployment config file used by this GitHub Action, latest will be used implicitly.

About

GitHub action for syncing Paperspace container deployments.

Resources

License

Stars

Watchers

Forks

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /