Skip to content

Instantly share code, notes, and snippets.

@Loner1024
Created January 15, 2020 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Loner1024/b70f523642525cd019220effc80bbe2a to your computer and use it in GitHub Desktop.
Save Loner1024/b70f523642525cd019220effc80bbe2a to your computer and use it in GitHub Desktop.
action
name: action
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install
run: npm install
- name: build
run: npm run build
{
"name": "action",
"builds": [
{
"src": "package.json",
"use": "@now/static-build",
"config": {
"distDir": "dist"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment