[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.

chore: update ::set-output command to new syntax

https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

Willow (GHOST) (May 24, 2026, 3:53 PM +0100) f48f1035 fa296c79

+3 -3
+3 -3
.github/workflows/publish.yml
··· 28 28 29 29 - name: Get Version 30 30 id: vars 31 - run: echo ::set-output name=version::$(echo "${GITHUB_REF_NAME}" | sed 's/^v//') 31 + run: echo "version=$(echo "${GITHUB_REF_NAME}" | sed 's/^v//')" >> $GITHUB_OUTPUT 32 32 33 33 - name: Build JSR 34 34 run: deno task build:jsr "${STEPS_VARS_OUTPUTS_VERSION}" ··· 57 57 58 58 - name: Get Version 59 59 id: vars 60 - run: echo ::set-output name=version::$(echo "${GITHUB_REF_NAME}" | sed 's/^v//') 60 + run: echo "version=$(echo "${GITHUB_REF_NAME}" | sed 's/^v//')" >> $GITHUB_OUTPUT 61 61 62 62 - name: Setup Node 63 63 uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 ··· 130 130 131 131 - name: Get Version 132 132 id: vars 133 - run: echo ::set-output name=version::$(echo "${GITHUB_REF_NAME}" | sed 's/^v//') 133 + run: echo "version=$(echo "${GITHUB_REF_NAME}" | sed 's/^v//')" >> $GITHUB_OUTPUT 134 134 135 135 - name: Build JSR 136 136 run: deno task build:jsr "${STEPS_VARS_OUTPUTS_VERSION}"