7 Commits

Author SHA1 Message Date
184c687f92 Update action.yml 2023-07-12 00:06:11 +00:00
a7f015f130 Revert to vivi action 2023-07-12 00:05:46 +00:00
d80d8c1b77 Attempt to add lines that might be causing silent crash 2023-07-12 00:04:31 +00:00
9231edac85 Try a different docker image 2023-07-11 23:57:07 +00:00
43808abdbd Remove working in github workspace folder, we're not github here 2023-07-11 23:50:12 +00:00
7080a5d54d Swap to jerryjvl build repo 2023-07-11 23:49:30 +00:00
93a90a5ba0 Update Dockerfile 2023-07-11 23:44:53 +00:00
3 changed files with 26 additions and 11 deletions

21
LICENSE Normal file
View 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.

View File

@@ -1,16 +1,11 @@
name: 'Jekyll Minimal Action'
author: 'Vivien Richter <vivien-richter@outlook.de>'
description: 'Pure minimal Jekyll pipeline with basic build tools for universal usage.'
inputs:
command:
description: 'Complete Jekyll command'
required: true
default: 'jekyll --help'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.command }}
- jekyll build
branding:
icon: 'book-open'
color: 'red'

View File

@@ -7,11 +7,10 @@ set -x
set -e
# Change permissions
chmod -R a+w ./
chmod -R a+w /github/workspace
pwd
ls -R
# Use working directory
cd /github/workspace
# Run command
jekyll build
$*