From ab274579370087c22ebcabb9f2a1c404d0fe6648 Mon Sep 17 00:00:00 2001 From: mikecoomber Date: Tue, 24 Dec 2024 11:27:46 +0000 Subject: [PATCH] ci: seperated out code connect into its own action --- .github/workflows/on-release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index 8b0f2785..7ad19030 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -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}}