Skip to content

update action versions #4

update action versions

update action versions #4

Workflow file for this run

name: Publish on JSR/NPM
on:
push:
branches: [main]
release:
types: [created]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Setup Repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# Some of this is from https://github.com/discordeno/discordeno/blob/main/.github/workflows/release.yml
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '21.x'
registry-url: 'https://registry.npmjs.org'
- name: Deno Lint
run: deno lint
- name: Build npm folder
run: deno run -A --unstable ./scripts/dnt.ts
- name: Remove node_modules
run: rm -rf npm/node_modules
# Branch can be used for dev builds
- name: Push to Node branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: node
FOLDER: npm
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "Build: ({sha}) {msg}"
# Only used if it's triggered from a release
- name: Publish on NPM
if: github.event_name == 'release' && github.repository == 'Julli4n/roblox-bat'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: cd npm && npm publish --access public
- name: Publish on JSR
if: github.event_name == 'release' && github.repository == 'Julli4n/roblox-bat'
run: deno publish