Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 184c687f92 | |||
| a7f015f130 | |||
| d80d8c1b77 | |||
| 9231edac85 | |||
| 43808abdbd | |||
| 7080a5d54d | |||
| 93a90a5ba0 | |||
| ab4d0614c7 |
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2020 Jerry van Leeuwen
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -1,16 +1,11 @@
|
|||||||
name: 'Jekyll Minimal Action'
|
name: 'Jekyll Minimal Action'
|
||||||
author: 'Vivien Richter <vivien-richter@outlook.de>'
|
author: 'Vivien Richter <vivien-richter@outlook.de>'
|
||||||
description: 'Pure minimal Jekyll pipeline with basic build tools for universal usage.'
|
description: 'Pure minimal Jekyll pipeline with basic build tools for universal usage.'
|
||||||
inputs:
|
|
||||||
command:
|
|
||||||
description: 'Complete Jekyll command'
|
|
||||||
required: true
|
|
||||||
default: 'jekyll --help'
|
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'Dockerfile'
|
||||||
args:
|
args:
|
||||||
- ${{ inputs.command }}
|
- jekyll build
|
||||||
branding:
|
branding:
|
||||||
icon: 'book-open'
|
icon: 'book-open'
|
||||||
color: 'red'
|
color: 'red'
|
||||||
|
|||||||
@@ -7,7 +7,10 @@ set -x
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Change permissions
|
# Change permissions
|
||||||
chmod -R a+w ./
|
chmod -R a+w /github/workspace
|
||||||
|
|
||||||
|
# Use working directory
|
||||||
|
cd /github/workspace
|
||||||
|
|
||||||
# Run command
|
# Run command
|
||||||
$*
|
$*
|
||||||
|
|||||||
Reference in New Issue
Block a user