From 165752c3dc2857d961c486c7e6cb39d1ce2732ed Mon Sep 17 00:00:00 2001 From: Andrew Jiang Date: Sat, 14 Sep 2024 14:12:10 -0400 Subject: [PATCH] fix --- .github/actions/vercel/action.yml | 17 ++++++++++------- .github/workflows/analyze-docs-bundle.yml | 3 ++- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/deploy-docs-bundle-dev.yml | 3 ++- .../deploy-docs-bundle-prod-preview.yml | 5 +++-- .github/workflows/deploy-docs-bundle-prod.yml | 15 +++++++++------ .github/workflows/deploy-fdr-dev.yml | 4 ++-- .github/workflows/deploy-fdr-prod.yml | 6 +++--- .github/workflows/deploy-fern-bot-dev.yml | 2 +- .github/workflows/deploy-fern-bot-prod.yml | 2 +- .../deploy-fern-dashboard-dev-preview.yml | 3 ++- .github/workflows/deploy-fern-dashboard-dev.yml | 3 ++- .../workflows/deploy-fern-dashboard-prod.yml | 3 ++- .../deploy-local-preview-bundle-dryrun.yml | 4 ++-- .../workflows/deploy-local-preview-bundle.yml | 4 ++-- .github/workflows/diff-fdr-dev.yml | 2 +- .github/workflows/ete-docs-bundle.yml | 2 +- .github/workflows/ete-fdr.yml | 2 +- .github/workflows/healthcheck.yml | 2 +- .../workflows/invoke-fern-bot-update-spec.yml | 4 ++-- .../invoke-fern-bot-upgrade-generators.yml | 4 ++-- .github/workflows/playwright.yml | 2 +- .github/workflows/postman.yml | 2 +- .github/workflows/publish-fdr-postman.yml | 2 +- .github/workflows/publish-fdr-sdk.yml | 4 ++-- .github/workflows/publish-generator-cli.yml | 2 +- .github/workflows/publish-template-resolver.yml | 4 ++-- .github/workflows/test-fern-bot.yml | 2 +- 28 files changed, 66 insertions(+), 54 deletions(-) diff --git a/.github/actions/vercel/action.yml b/.github/actions/vercel/action.yml index acd39805c9..7e9eb10ada 100644 --- a/.github/actions/vercel/action.yml +++ b/.github/actions/vercel/action.yml @@ -2,6 +2,9 @@ name: Build & Deploy to Vercel description: Build and deploy a Vercel project using CI/CD inputs: + token: + description: The Vercel token to use for deployment + required: true package: description: The workspace package to deploy, which is used for turbo-ignore required: true @@ -29,7 +32,7 @@ runs: steps: - name: Install if: $(command -v pnpm) == "" - uses: ./.github/actions/install + uses: .github/actions/install with: run_install: false # install is handled by vercel build @@ -52,35 +55,35 @@ runs: - name: Pull Vercel Environment shell: bash - run: vercel pull --yes --environment=${{ inputs.environment }} --token=${{ secrets.VERCEL_TOKEN }} + run: vercel pull --yes --environment=${{ inputs.environment }} --token=${{ inputs.token }} - name: Build Vercel Preview shell: bash if: ${{ inputs.environment == 'preview' }} - run: vercel build --yes --token=${{ secrets.VERCEL_TOKEN }} + run: vercel build --yes --token=${{ inputs.token }} - name: Deploy Vercel Preview shell: bash if: ${{ inputs.environment == 'preview' && inputs.skip_deploy == 'false' }} id: deploy-preview run: | - DEPLOYMENT_URL="$(vercel deploy --yes --prebuilt --token=${{ secrets.VERCEL_TOKEN }}) --archive=tgz" + DEPLOYMENT_URL="$(vercel deploy --yes --prebuilt --token=${{ inputs.token }}) --archive=tgz" echo "::set-output name=deployment_url::$DEPLOYMENT_URL" - name: Build Vercel Production shell: bash if: ${{ inputs.environment == 'production' }} - run: vercel build --yes --prod --token=${{ secrets.VERCEL_TOKEN }} --archive=tgz + run: vercel build --yes --prod --token=${{ inputs.token }} --archive=tgz - name: Deploy Vercel Production shell: bash if: ${{ inputs.environment == 'production' && inputs.skip_deploy == 'false' }} id: deploy-production run: | - DEPLOYMENT_URL="$(vercel deploy --yes --prebuilt --prod --skip-domain --token=${{ secrets.VERCEL_TOKEN }}) --archive=tgz" + DEPLOYMENT_URL="$(vercel deploy --yes --prebuilt --prod --skip-domain --token=${{ inputs.token }}) --archive=tgz" echo "::set-output name=deployment_url::$DEPLOYMENT_URL" - name: Wait for Deployment shell: bash if: ${{ inputs.skip_deploy == 'false' }} - run: vercel inspect ${{ steps.deploy-preview.outputs.deployment_url || steps.deploy-production.outputs.deployment_url }} --token=${{ secrets.VERCEL_TOKEN }} --wait + run: vercel inspect ${{ steps.deploy-preview.outputs.deployment_url || steps.deploy-production.outputs.deployment_url }} --token=${{ inputs.token }} --wait diff --git a/.github/workflows/analyze-docs-bundle.yml b/.github/workflows/analyze-docs-bundle.yml index 1a94593ecd..8498e36416 100644 --- a/.github/workflows/analyze-docs-bundle.yml +++ b/.github/workflows/analyze-docs-bundle.yml @@ -35,11 +35,12 @@ jobs: - uses: actions/checkout@v3 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy env: ANALYZE: 1 with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/docs-bundle" environment: production skip_deploy: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ab048bdc8..8464529a7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 2 # This helps turbo resolve changes faster - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile and build run: pnpm turbo compile codegen build @@ -44,7 +44,7 @@ jobs: fetch-depth: 2 # This helps turbo resolve changes faster - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Lint style run: pnpm turbo lint:style @@ -61,7 +61,7 @@ jobs: fetch-depth: 0 - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Run Chromatic uses: chromaui/action@latest @@ -79,7 +79,7 @@ jobs: fetch-depth: 2 # This helps turbo resolve changes faster - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Log in to Docker Hub uses: docker/login-action@v3 @@ -103,7 +103,7 @@ jobs: fetch-depth: 2 # This helps turbo resolve changes faster - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿงช Build generator-cli run: pnpm turbo --filter=@fern-api/generator-cli compile @@ -132,7 +132,7 @@ jobs: fetch-depth: 2 # This helps turbo resolve changes faster - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Check release blockers run: pnpm check-docs-release-blockers diff --git a/.github/workflows/deploy-docs-bundle-dev.yml b/.github/workflows/deploy-docs-bundle-dev.yml index e2a819b3be..7d56b57895 100644 --- a/.github/workflows/deploy-docs-bundle-dev.yml +++ b/.github/workflows/deploy-docs-bundle-dev.yml @@ -28,9 +28,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/docs-bundle" environment: production diff --git a/.github/workflows/deploy-docs-bundle-prod-preview.yml b/.github/workflows/deploy-docs-bundle-prod-preview.yml index 5291d5fce9..91c9e1338c 100644 --- a/.github/workflows/deploy-docs-bundle-prod-preview.yml +++ b/.github/workflows/deploy-docs-bundle-prod-preview.yml @@ -28,9 +28,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/docs-bundle" environment: preview @@ -76,5 +77,5 @@ jobs: ete-tests: needs: fetch-domains - uses: ./.github/workflows/ete-docs-bundle.yml + uses: .github/workflows/ete-docs-bundle.yml secrets: inherit diff --git a/.github/workflows/deploy-docs-bundle-prod.yml b/.github/workflows/deploy-docs-bundle-prod.yml index e344fe2780..9bba50ed9a 100644 --- a/.github/workflows/deploy-docs-bundle-prod.yml +++ b/.github/workflows/deploy-docs-bundle-prod.yml @@ -28,9 +28,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/docs-bundle" environment: production @@ -48,9 +49,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/docs-bundle" environment: production @@ -68,9 +70,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/docs-bundle" environment: production @@ -96,7 +99,7 @@ jobs: needs: - fetch-domains - deploy_app_buildwithfern_com - uses: ./.github/workflows/ete-docs-bundle.yml + uses: .github/workflows/ete-docs-bundle.yml secrets: DEPLOYMENT_URL: ${{ needs.deploy_app_buildwithfern_com.outputs.deployment_url }} @@ -124,7 +127,7 @@ jobs: revalidate-all: needs: promote # Ensure that the deployment is promoted before revalidating - uses: ./.github/workflows/revalidate-all.yml + uses: .github/workflows/revalidate-all.yml with: deployment_url: https://app.buildwithfern.com @@ -153,5 +156,5 @@ jobs: healthchecks: needs: promote # Ensure that the deployment is promoted before running healthchecks - uses: ./.github/workflows/healthcheck.yml + uses: .github/workflows/healthcheck.yml secrets: inherit diff --git a/.github/workflows/deploy-fdr-dev.yml b/.github/workflows/deploy-fdr-dev.yml index 53814b5565..c0d901d40e 100644 --- a/.github/workflows/deploy-fdr-dev.yml +++ b/.github/workflows/deploy-fdr-dev.yml @@ -26,7 +26,7 @@ env: jobs: sdk: - uses: ./.github/workflows/publish-fdr-sdk.yml + uses: .github/workflows/publish-fdr-sdk.yml secrets: inherit deploy_dev: @@ -45,7 +45,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿ”Ž Has changed id: has-changed diff --git a/.github/workflows/deploy-fdr-prod.yml b/.github/workflows/deploy-fdr-prod.yml index 02e65c5605..6a3ecd45f6 100644 --- a/.github/workflows/deploy-fdr-prod.yml +++ b/.github/workflows/deploy-fdr-prod.yml @@ -19,7 +19,7 @@ env: jobs: sdk: if: github.ref_type == 'tag' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/fdr@') - uses: ./.github/workflows/publish-fdr-sdk.yml + uses: .github/workflows/publish-fdr-sdk.yml secrets: inherit deploy_prod: @@ -39,7 +39,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿงช Build and test run: pnpm turbo build test --filter=${{ env.PACKAGE_NAME }} @@ -90,5 +90,5 @@ jobs: healthchecks: needs: deploy_prod - uses: ./.github/workflows/healthcheck.yml + uses: .github/workflows/healthcheck.yml secrets: inherit diff --git a/.github/workflows/deploy-fern-bot-dev.yml b/.github/workflows/deploy-fern-bot-dev.yml index 372e41b590..933a975ee9 100644 --- a/.github/workflows/deploy-fern-bot-dev.yml +++ b/.github/workflows/deploy-fern-bot-dev.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile run: pnpm compile diff --git a/.github/workflows/deploy-fern-bot-prod.yml b/.github/workflows/deploy-fern-bot-prod.yml index db320e1e89..a69b0731d2 100644 --- a/.github/workflows/deploy-fern-bot-prod.yml +++ b/.github/workflows/deploy-fern-bot-prod.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile run: pnpm compile diff --git a/.github/workflows/deploy-fern-dashboard-dev-preview.yml b/.github/workflows/deploy-fern-dashboard-dev-preview.yml index d3244cf89c..87c021716d 100644 --- a/.github/workflows/deploy-fern-dashboard-dev-preview.yml +++ b/.github/workflows/deploy-fern-dashboard-dev-preview.yml @@ -30,8 +30,9 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/dashboard" environment: preview diff --git a/.github/workflows/deploy-fern-dashboard-dev.yml b/.github/workflows/deploy-fern-dashboard-dev.yml index db97db926b..731e0efa08 100644 --- a/.github/workflows/deploy-fern-dashboard-dev.yml +++ b/.github/workflows/deploy-fern-dashboard-dev.yml @@ -30,9 +30,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/dashboard" environment: production diff --git a/.github/workflows/deploy-fern-dashboard-prod.yml b/.github/workflows/deploy-fern-dashboard-prod.yml index ab4c6c96f6..80d83d317d 100644 --- a/.github/workflows/deploy-fern-dashboard-prod.yml +++ b/.github/workflows/deploy-fern-dashboard-prod.yml @@ -31,9 +31,10 @@ jobs: - uses: actions/checkout@v4 - name: Build & Deploy to Vercel - uses: ./.github/actions/vercel + uses: .github/actions/vercel id: deploy with: + token: ${{ secrets.VERCEL_TOKEN }} package: "@fern-ui/dashboard" environment: production diff --git a/.github/workflows/deploy-local-preview-bundle-dryrun.yml b/.github/workflows/deploy-local-preview-bundle-dryrun.yml index 9f07bd99c3..70860253fc 100644 --- a/.github/workflows/deploy-local-preview-bundle-dryrun.yml +++ b/.github/workflows/deploy-local-preview-bundle-dryrun.yml @@ -24,7 +24,7 @@ jobs: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Build local preview bundle run: | pnpm compile @@ -44,7 +44,7 @@ jobs: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Build local preview bundle run: | pnpm compile diff --git a/.github/workflows/deploy-local-preview-bundle.yml b/.github/workflows/deploy-local-preview-bundle.yml index 282ac7d828..9a51ad5528 100644 --- a/.github/workflows/deploy-local-preview-bundle.yml +++ b/.github/workflows/deploy-local-preview-bundle.yml @@ -27,7 +27,7 @@ jobs: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Build local preview bundle run: | pnpm compile @@ -48,7 +48,7 @@ jobs: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Build local preview bundle run: | pnpm compile diff --git a/.github/workflows/diff-fdr-dev.yml b/.github/workflows/diff-fdr-dev.yml index ccfcfe8618..8b8038ce6e 100644 --- a/.github/workflows/diff-fdr-dev.yml +++ b/.github/workflows/diff-fdr-dev.yml @@ -44,7 +44,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿ”Ž Has changed id: has-changed diff --git a/.github/workflows/ete-docs-bundle.yml b/.github/workflows/ete-docs-bundle.yml index e5667dde1d..4521bf0a7f 100644 --- a/.github/workflows/ete-docs-bundle.yml +++ b/.github/workflows/ete-docs-bundle.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Download artifact uses: actions/download-artifact@v3 diff --git a/.github/workflows/ete-fdr.yml b/.github/workflows/ete-fdr.yml index f2edcd18b1..4c5f9f89c2 100644 --- a/.github/workflows/ete-fdr.yml +++ b/.github/workflows/ete-fdr.yml @@ -39,7 +39,7 @@ jobs: fetch-depth: 2 # This helps turbo resolve changes faster - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Install Docker Compose run: | diff --git a/.github/workflows/healthcheck.yml b/.github/workflows/healthcheck.yml index 4931435117..12182c9995 100644 --- a/.github/workflows/healthcheck.yml +++ b/.github/workflows/healthcheck.yml @@ -23,7 +23,7 @@ jobs: fetch-depth: 0 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿงช Build Healthchecks CLI run: | diff --git a/.github/workflows/invoke-fern-bot-update-spec.yml b/.github/workflows/invoke-fern-bot-update-spec.yml index 57ea34df3c..03794a0dec 100644 --- a/.github/workflows/invoke-fern-bot-update-spec.yml +++ b/.github/workflows/invoke-fern-bot-update-spec.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile run: pnpm compile @@ -67,7 +67,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile run: pnpm compile diff --git a/.github/workflows/invoke-fern-bot-upgrade-generators.yml b/.github/workflows/invoke-fern-bot-upgrade-generators.yml index 5502ad523c..352cb316e3 100644 --- a/.github/workflows/invoke-fern-bot-upgrade-generators.yml +++ b/.github/workflows/invoke-fern-bot-upgrade-generators.yml @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile run: pnpm compile @@ -70,7 +70,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile run: pnpm compile diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 1c6ac51786..81473e96e4 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - name: Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Compile and build run: pnpm turbo compile codegen build diff --git a/.github/workflows/postman.yml b/.github/workflows/postman.yml index 24d777a171..1c4f11d642 100644 --- a/.github/workflows/postman.yml +++ b/.github/workflows/postman.yml @@ -14,7 +14,7 @@ jobs: ref: ${{ github.event.inputs.branch }} - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Install Fern run: npm install -g fern-api diff --git a/.github/workflows/publish-fdr-postman.yml b/.github/workflows/publish-fdr-postman.yml index d92655fbfd..0da78dae19 100644 --- a/.github/workflows/publish-fdr-postman.yml +++ b/.github/workflows/publish-fdr-postman.yml @@ -17,7 +17,7 @@ jobs: ref: ${{ github.event.inputs.branch }} - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Install Fern run: npm install -g fern-api diff --git a/.github/workflows/publish-fdr-sdk.yml b/.github/workflows/publish-fdr-sdk.yml index 1a879c999a..f80e754b2f 100644 --- a/.github/workflows/publish-fdr-sdk.yml +++ b/.github/workflows/publish-fdr-sdk.yml @@ -22,7 +22,7 @@ jobs: ref: ${{ github.event.inputs.branch }} - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Install Fern run: npm install -g fern-api @@ -43,7 +43,7 @@ jobs: ref: ${{ github.event.inputs.branch }} - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿงช Build and test run: pnpm turbo codegen build test --filter=${{ env.PACKAGE_NAME }} diff --git a/.github/workflows/publish-generator-cli.yml b/.github/workflows/publish-generator-cli.yml index c7581da2ae..c51d56382c 100644 --- a/.github/workflows/publish-generator-cli.yml +++ b/.github/workflows/publish-generator-cli.yml @@ -22,7 +22,7 @@ jobs: fetch-depth: 0 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿงช Build and test run: pnpm turbo codegen build test --filter=${{ env.PACKAGE_NAME }} diff --git a/.github/workflows/publish-template-resolver.yml b/.github/workflows/publish-template-resolver.yml index 4cfdf511e8..b170ffcbab 100644 --- a/.github/workflows/publish-template-resolver.yml +++ b/.github/workflows/publish-template-resolver.yml @@ -24,10 +24,10 @@ jobs: fetch-depth: 0 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: ๐Ÿงช Build CJS and test - run: pnpm --filter=${{ env.PACKAGE_NAME }} compile:cjs + run: pnpm --filter=${{ env.PACKAGE_NAME }} compile:cjs - name: Publish Template Resolver Package env: diff --git a/.github/workflows/test-fern-bot.yml b/.github/workflows/test-fern-bot.yml index bb11fb2975..251b52b867 100644 --- a/.github/workflows/test-fern-bot.yml +++ b/.github/workflows/test-fern-bot.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - name: ๐Ÿ“ฅ Install - uses: ./.github/actions/install + uses: .github/actions/install - name: Codegen run: |