add: images and is-not-branch-deleted action

This commit is contained in:
peaceiris 2019-06-12 14:14:55 +09:00
parent a18ce52dfa
commit 1f78e2b780
3 changed files with 10 additions and 1 deletions

View File

@ -53,8 +53,13 @@ action "is-branch-master" {
args = "branch master"
}
action "is-not-branch-deleted" {
uses = "actions/bin/filter@master"
args = "not deleted"
}
action "build" {
needs = "is-branch-master"
needs = ["is-branch-master", "is-not-branch-deleted"]
uses = "peaceiris/actions-hugo@v0.55.6"
args = ["--gc", "--minify", "--cleanDestinationDir"]
}
@ -70,6 +75,10 @@ action "deploy" {
}
```
| Workflow overview | Actions log |
|---|---|
| ![GitHub Actions for deploying to GitHub Pages Workflow overview](./images/workflow-1.jpg) | ![GitHub Actions for deploying to GitHub Pages Actions log](./images/workflow-2.jpg) |
## Examples

BIN
images/workflow-1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
images/workflow-2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB