diff --git a/action.yml b/action.yml index 132eb37..48100ed 100644 --- a/action.yml +++ b/action.yml @@ -34,17 +34,10 @@ runs: - name: Setup Bun uses: oven-sh/setup-bun@v2 - - name: Checkout Sequoia CLI - uses: actions/checkout@v4 - with: - repository: ${{ github.action_repository }} - ref: ${{ github.action_ref }} - path: .sequoia-action - - name: Build and install Sequoia CLI shell: bash run: | - cd .sequoia-action + cd ${{ github.action_path }} bun install bun run build:cli bun link --cwd packages/cli @@ -72,10 +65,6 @@ runs: fi sequoia publish $FLAGS - - name: Clean up action checkout - shell: bash - run: rm -rf .sequoia-action - - name: Commit back changes if: inputs.commit-back == 'true' shell: bash