mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-04-05 22:38:14 +08:00
18 lines
381 B
YAML
18 lines
381 B
YAML
name: example - static
|
|
on:
|
|
push:
|
|
# branches:
|
|
# - master
|
|
|
|
jobs:
|
|
static:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: amondnet/now-deployment@v1
|
|
id: now-deployment
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
zeit-token: ${{ secrets.ZEIT_TOKEN }}
|
|
now-args: '--prod example/static'
|