This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
@alwatr/fetch@2.0.2 #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Publish NPM | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- created | |
env: | |
NODE_VERSION: lts/* | |
jobs: | |
publish-npm: | |
if: github.repository_owner == 'AliMD' | |
name: Publish NPM | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: ⤵️ Checkout repository | |
uses: actions/checkout@v4.1.1 | |
- name: 🏗 Setup nodejs | |
uses: actions/setup-node@v4.0.0 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
registry-url: https://registry.npmjs.org/ | |
cache: yarn | |
- name: 🏗 Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: 🏗 Build Typescript | |
run: yarn build | |
# - name: 🚀 Extra Packages Build | |
# run: yarn build:r | |
- name: 🚀 Publish | |
run: yarn run publish --yes | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |