Skip to content

continuedev/continue-publish-action

Repository files navigation

Continue Publish Action

This action publishes a new version of your Continue package(s)

Inputs

paths

Required The path or glob pattern of .yaml files to publish. The name of the file will be used as the package slug (excluding the .yaml extension)

owner-slug

Required The slug of the owner of the package(s) to publish

api-key

Required Your Continue API key, can be found at http://app.continue.dev/settings/api-keys

Example usage

name: Publish Continue Package

on:
  push:
    branches:
      - main
    paths:
      - ./path/to/config.yaml

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: continuedev/continue-publish-action
        with:
          owner-slug: continuedev
          paths: ./path/to/config.yaml
          api-key: ${{ secrets.CONTINUE_API_KEY }}

About

Publish a new version of a Continue package

Resources

Stars

Watchers

Forks

Packages

No packages published