Skip to content

Commit

Permalink
ci: seperated out code connect into its own action
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecoomber committed Dec 24, 2024
1 parent 8e2cce1 commit ab27457
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ jobs:
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

publish_code_connect:
name: Publish Code Connect
needs: publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install packages
run: npm ci
- name: Publish code connect
run: npx figma connect publish --token ${{ secrets.FIGMA_PERSONAL_ACCESS_TOKEN}}

Expand Down

0 comments on commit ab27457

Please sign in to comment.