Skip to content

Commit

Permalink
second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Jan 13, 2025
1 parent 2bb80a2 commit c283f2d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Packages

on:
push:
branches:
- main
paths:
- packages/**
- .github/workflows/main.yaml

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

- uses: continuedev/continue-publish-action
with:
api-key: ${{ secrets.TEST_CONTINUE_API_KEY }}
packages:
- slug: continuedev/python
path: packages/python.yaml

- slug: continuedev/typescript
path: packages/typescript.yaml

- slug: continuedev/recommended-models
path: packages/recommended-models.yaml
5 changes: 5 additions & 0 deletions packages/python.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: Python
version: 0.0.1

rules:
- write good python
2 changes: 2 additions & 0 deletions packages/recommended-models.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name: Recommended Models
version: 0.0.1
5 changes: 5 additions & 0 deletions packages/typescript.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: TypeScript
version: 0.0.1

rules:
- write good typescript

0 comments on commit c283f2d

Please sign in to comment.