Skip to content

Commit f1d4f1a

Browse files
committed
Fix action yml
1 parent 980032b commit f1d4f1a

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
push:
77
branches:
88
- 'dev'
9+
paths-ignore:
10+
- '**.md'
911

1012
jobs:
1113
ci:

.github/workflows/dev.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- 'dev'
7+
paths-ignore:
8+
- '**.md'
79

810
jobs:
911
prune:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.5.2 (2020/05/09)
4+
5+
* Update CI workflow
6+
* Fix action yml
7+
38
## 1.5.1 (2020/05/04)
49

510
* Keep PAT if you want to deploy to another repo

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![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)
22
[![GitHub marketplace](https://img.shields.io/badge/marketplace-github--pages-blue?logo=github&style=flat-square)](https://github.com/marketplace/actions/github-pages)
3-
[![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)
3+
[![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)
44
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
55
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)
66

action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,34 @@ branding:
99
inputs:
1010
repo:
1111
description: 'GitHub repository where assets will be deployed (default current)'
12+
required: false
1213
target_branch:
1314
description: 'Git branch where assets will be deployed'
1415
default: 'gh-pages'
16+
required: false
1517
keep_history:
1618
description: 'Create incremental commit instead of doing push force'
1719
default: 'false'
20+
required: false
1821
allow_empty_commit:
1922
description: 'Allow an empty commit to be created'
2023
default: 'true'
24+
required: false
2125
build_dir:
2226
description: 'Build directory to deploy'
2327
required: true
2428
committer_name:
2529
description: 'Commit author''s name'
30+
required: false
2631
committer_email:
2732
description: 'Commit author''s email'
33+
required: false
2834
commit_message:
2935
description: 'Commit message'
36+
required: false
3037
fqdn:
3138
description: 'Write the given domain name to the CNAME file'
39+
required: false
3240

3341
runs:
3442
using: 'node12'

0 commit comments

Comments
 (0)