mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-04-24 04:15:21 +08:00
22 lines
584 B
YAML
22 lines
584 B
YAML
name: deploy website preview
|
|
on:
|
|
push:
|
|
branches:
|
|
- release/*
|
|
jobs:
|
|
prepare:
|
|
runs-on: ubuntu-latest
|
|
if: "! contains(github.event.head_commit.message, '[ci skip]') && ! contains(github.event.head_commit.message, '[skip ci]')"
|
|
steps:
|
|
- run: echo "${{ github.event.head_commit.message }}"
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: ./
|
|
id: now-deployment
|
|
with:
|
|
github-token: ${{ secrets.BOT_TOKEN }}
|
|
zeit-token: ${{ secrets.ZEIT_TOKEN }}
|
|
#ZEIT_TEAMID: amond
|