mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-03-30 23:21:58 +08:00
23 lines
522 B
YAML
23 lines
522 B
YAML
name: deploy website preview
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: "! contains(github.event.head_commit.message, '[ci skip]') && ! contains(github.event.head_commit.message, '[skip ci]')"
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: ./
|
|
id: now-deployment
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
zeit-token: ${{ secrets.ZEIT_TOKEN }}
|
|
#ZEIT_TEAMID: amond
|
|
|