ghaction-github-pages/.github/workflows/ci.yml

39 lines
933 B
YAML
Raw Normal View History

2020-05-07 05:54:08 +08:00
name: ci
2019-09-01 06:30:48 +08:00
on:
push:
branches:
2020-05-04 07:18:09 +08:00
- 'dev'
2019-09-01 06:30:48 +08:00
jobs:
2020-05-07 05:54:08 +08:00
ci:
2019-09-01 06:30:48 +08:00
runs-on: ubuntu-latest
steps:
-
name: Checkout
2020-05-07 02:54:24 +08:00
uses: actions/checkout@v2
2020-04-09 06:59:11 +08:00
-
name: Gen dummy page
2019-09-01 06:30:48 +08:00
run: |
mkdir public
cat > public/index.html <<EOL
<!doctype html>
<html>
<head>
<title>GitHub Pages deployed!</title>
</head>
<body>
2020-05-04 07:22:35 +08:00
<p>GitHub Pages with <strong>${{ github.sha }}</strong> commit ID has been deployed through <a href="https://github.com/marketplace/actions/github-pages">GitHub Pages action</a> successfully on <strong>$(date)</strong>.</p>
2019-09-01 06:30:48 +08:00
</body>
</html>
EOL
-
name: Deploy
if: success()
2019-10-11 07:41:16 +08:00
uses: ./
2019-09-01 06:30:48 +08:00
with:
2020-05-04 07:18:09 +08:00
target_branch: gh-pages
2019-09-01 06:30:48 +08:00
build_dir: public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}