0

我不知道无效的用户或密码 在此处输入图像描述

name: Deploy Website

on: [push]

jobs:
  build:
    runs-on: windows-latest
    name: Deploying to surge
    steps:
      - uses: actions/checkout@v2
      - name: Install Node.js
        uses: actions/setup-node@v2-beta
        with:
          node-version: 12
      - name: Install Surge
        run: npm install -g surge
      - name: Run surge
        run: surge ./ https://bootcamp_class01.surge.sh --token ${{ secrets.SURGE_TOKEN}}
4

0 回答 0