Skip to content

Update node.js.yml

Update node.js.yml #10

Workflow file for this run

name: Build and Release
on:
push:
branches:
- what-is-the-tsc-say
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'latest'
- name: Install TypeScript
run: npm install typescript@latest
- name: Install dependencies
run: npm i
- name: tsc build
run: tsc
- name: webpack build
run: webpack
- name: Build project
run: node packer.js
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./node_modules/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # 使用 GitHub 提供的 token 进行发布