Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,12 @@ jobs:
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Node CI
run: npm ci
- name: Download
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
env:
BOT_FIRST_NAME: ${{ secrets.BOT_FIRST_NAME }}
BOT_LAST_NAME: ${{ secrets.BOT_LAST_NAME }}
BOT_PASSWORD: ${{ secrets.BOT_PASSWORD }}
BOT_LOCATION: ${{ secrets.BOT_LOCATION }}
run: npx tsc download/keywords.ts && node download/keywords.js "$BOT_FIRST_NAME" "$BOT_LAST_NAME" "$BOT_PASSWORD" "$BOT_LOCATION"
- name: Copy Download
cache: true
- name: Download Yaml Defs
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: rm data/keywords_lsl_formatted.llsd.xml && cp data/keywords_lsl_download.llsd.xml data/keywords_lsl_formatted.llsd.xml
run: |
curl --output data/lsl_definitions.dl.yaml "https://raw.githubusercontent.com/secondlife/lsl-definitions/refs/heads/main/lsl_definitions.yaml"
rm data/lsl_definitions.yaml && cp data/lsl_definitions.dl.yaml data/lsl_definitions.yaml
- name: Build
run: deno task build
- name: Document
Expand Down
Loading