[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #39 from ghostdevv/ci-preview

chore: update preview workflow

authored by

Jacob Bolda and committed by
GitHub
(May 24, 2026, 2:24 PM -0500) 042b7a15 427deb49

+13 -7
+13 -7
.github/workflows/preview.yml
··· 5 5 permissions: 6 6 contents: read 7 7 8 + concurrency: 9 + group: ${{ github.workflow }}-${{ github.ref }} 10 + cancel-in-progress: true 11 + 8 12 jobs: 9 13 preview: 10 14 runs-on: ubuntu-latest 11 15 timeout-minutes: 10 12 16 steps: 13 17 - name: checkout 14 - uses: actions/checkout@v4 18 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 15 19 with: 16 20 fetch-depth: 0 17 21 submodules: true 22 + persist-credentials: false 18 23 19 24 - name: setup deno 20 - uses: denoland/setup-deno@v2 25 + uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4 21 26 with: 22 27 deno-version: v2.x 23 28 ··· 26 31 27 32 - name: Get Version 28 33 id: vars 29 - run: echo ::set-output name=version::$(git describe --abbrev=0 --tags | sed 's/^v//')-pr+$(git rev-parse HEAD) 34 + run: echo "version=$(git describe --abbrev=0 --tags | sed 's/^v//')-pr+$(git rev-parse HEAD)" >> $GITHUB_OUTPUT 30 35 31 36 - name: Setup Node 32 - uses: actions/setup-node@v4 37 + uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 33 38 with: 34 - node-version: 20.x 35 - registry-url: https://registry.npmjs.com 39 + node-version: 24 36 40 37 41 - name: Build NPM 38 - run: deno task build:npm ${{steps.vars.outputs.version}} 42 + run: deno task build:npm "${STEPS_VARS_OUTPUTS_VERSION}" 43 + env: 44 + STEPS_VARS_OUTPUTS_VERSION: ${{steps.vars.outputs.version}} 39 45 40 46 - name: Publish Preview Versions 41 47 run: npx pkg-pr-new publish './build/npm'