Skip to content

chore(types): bump version #2

chore(types): bump version

chore(types): bump version #2

Workflow file for this run

name: Publish valorant-api-types package to npmjs
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./valorant-api-types
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --provenance --access public --foreground-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}