Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

0.3.2 - Fix nullable edit username #47

0.3.2 - Fix nullable edit username

0.3.2 - Fix nullable edit username #47

name: Build npm and push to npm
on:
release:
types: [created]
workflow_dispatch:
jobs:
publish-npm-global-registry:
runs-on: ubuntu-latest
environment:
name: npm-publish
url: https://www.npmjs.com/package/@funixproductions/funixproductions-requests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup nodejs 18
uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- name: Install depedencies
run: npm ci
- name: Build libraries
run: npm run build
- name: Publish to npm funixproductions-requests
run: cd dist/funixproductions-requests && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}