Fix action yml
This commit is contained in:
parent
980032be52
commit
f1d4f1ae95
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -6,6 +6,8 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'dev'
|
- 'dev'
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
|
|
2
.github/workflows/dev.yml
vendored
2
.github/workflows/dev.yml
vendored
|
@ -4,6 +4,8 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'dev'
|
- 'dev'
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
prune:
|
prune:
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.5.2 (2020/05/09)
|
||||||
|
|
||||||
|
* Update CI workflow
|
||||||
|
* Fix action yml
|
||||||
|
|
||||||
## 1.5.1 (2020/05/04)
|
## 1.5.1 (2020/05/04)
|
||||||
|
|
||||||
* Keep PAT if you want to deploy to another repo
|
* Keep PAT if you want to deploy to another repo
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[![GitHub release](https://img.shields.io/github/release/crazy-max/ghaction-github-pages.svg?style=flat-square)](https://github.com/crazy-max/ghaction-github-pages/releases/latest)
|
[![GitHub release](https://img.shields.io/github/release/crazy-max/ghaction-github-pages.svg?style=flat-square)](https://github.com/crazy-max/ghaction-github-pages/releases/latest)
|
||||||
[![GitHub marketplace](https://img.shields.io/badge/marketplace-github--pages-blue?logo=github&style=flat-square)](https://github.com/marketplace/actions/github-pages)
|
[![GitHub marketplace](https://img.shields.io/badge/marketplace-github--pages-blue?logo=github&style=flat-square)](https://github.com/marketplace/actions/github-pages)
|
||||||
[![CI workflow](https://github.com/crazy-max/ghaction-github-pages/workflows/ci/badge.svg)](https://github.com/crazy-max/ghaction-github-pages/actions/?workflow=ci)
|
[![CI workflow](https://img.shields.io/github/workflow/status/crazy-max/ghaction-github-pages/ci?label=ci&logo=github&style=flat-square)](https://github.com/crazy-max/ghaction-github-pages/actions?workflow=ci)
|
||||||
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
|
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
|
||||||
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)
|
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)
|
||||||
|
|
||||||
|
|
|
@ -9,26 +9,34 @@ branding:
|
||||||
inputs:
|
inputs:
|
||||||
repo:
|
repo:
|
||||||
description: 'GitHub repository where assets will be deployed (default current)'
|
description: 'GitHub repository where assets will be deployed (default current)'
|
||||||
|
required: false
|
||||||
target_branch:
|
target_branch:
|
||||||
description: 'Git branch where assets will be deployed'
|
description: 'Git branch where assets will be deployed'
|
||||||
default: 'gh-pages'
|
default: 'gh-pages'
|
||||||
|
required: false
|
||||||
keep_history:
|
keep_history:
|
||||||
description: 'Create incremental commit instead of doing push force'
|
description: 'Create incremental commit instead of doing push force'
|
||||||
default: 'false'
|
default: 'false'
|
||||||
|
required: false
|
||||||
allow_empty_commit:
|
allow_empty_commit:
|
||||||
description: 'Allow an empty commit to be created'
|
description: 'Allow an empty commit to be created'
|
||||||
default: 'true'
|
default: 'true'
|
||||||
|
required: false
|
||||||
build_dir:
|
build_dir:
|
||||||
description: 'Build directory to deploy'
|
description: 'Build directory to deploy'
|
||||||
required: true
|
required: true
|
||||||
committer_name:
|
committer_name:
|
||||||
description: 'Commit author''s name'
|
description: 'Commit author''s name'
|
||||||
|
required: false
|
||||||
committer_email:
|
committer_email:
|
||||||
description: 'Commit author''s email'
|
description: 'Commit author''s email'
|
||||||
|
required: false
|
||||||
commit_message:
|
commit_message:
|
||||||
description: 'Commit message'
|
description: 'Commit message'
|
||||||
|
required: false
|
||||||
fqdn:
|
fqdn:
|
||||||
description: 'Write the given domain name to the CNAME file'
|
description: 'Write the given domain name to the CNAME file'
|
||||||
|
required: false
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node12'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user