-
Notifications
You must be signed in to change notification settings - Fork 17
/
action.yml
34 lines (33 loc) · 982 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Middleman Github Pages Action
description: 'Deploying your Middleman repo to the gh-pages branch of the same repository'
author: "Yuri Koval'ov"
branding:
icon: 'box'
color: 'orange'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
GITHUB_REPOSITORY:
description: 'Github repository to push built site to'
required: false
default: ${{ github.repository }}
GITHUB_ACTOR:
description: 'Name of the deploy actor'
required: false
default: ${{ github.actor }}
SITE_LOCATION:
description: 'Location of Middleman project within your repo'
required: false
default: '.'
BUILD_LOCATION:
description: 'Location where Middleman builds your website'
required: false
default: 'build'
REMOTE_BRANCH:
description: 'Branch name to push built sity to'
required: false
default: 'gh-pages'
GITHUB_TOKEN:
description: 'Token for the repo. Can be passed in using $\{{ secrets.GITHUB_TOKEN }}'
required: true