A CLI for publishing standard.site documents to ATProto

fix: use github.action_path instead of checking out action repo

github.action_repository/ref inside a composite action resolve to the
current step's action (actions/checkout), not the parent composite
action. Use github.action_path which points to the already-downloaded
action source.

+1 -12
+1 -12
action.yml
··· 34 34 - name: Setup Bun 35 35 uses: oven-sh/setup-bun@v2 36 36 37 - - name: Checkout Sequoia CLI 38 - uses: actions/checkout@v4 39 - with: 40 - repository: ${{ github.action_repository }} 41 - ref: ${{ github.action_ref }} 42 - path: .sequoia-action 43 - 44 37 - name: Build and install Sequoia CLI 45 38 shell: bash 46 39 run: | 47 - cd .sequoia-action 40 + cd ${{ github.action_path }} 48 41 bun install 49 42 bun run build:cli 50 43 bun link --cwd packages/cli ··· 71 64 FLAGS="--force" 72 65 fi 73 66 sequoia publish $FLAGS 74 - 75 - - name: Clean up action checkout 76 - shell: bash 77 - run: rm -rf .sequoia-action 78 67 79 68 - name: Commit back changes 80 69 if: inputs.commit-back == 'true'