-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
37 lines (37 loc) · 947 Bytes
/
Copy pathaction.yml
File metadata and controls
37 lines (37 loc) · 947 Bytes
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
35
36
37
# action.yml
name: 'Deploy your app to GitHub Pages'
description: 'GitHub action that will help deploy your app to the repository for GitHub Pages'
branding:
icon: 'download'
color: 'yellow'
inputs:
AUTHOR:
description: 'Author'
required: true
GITHUB_PAGE_NAME:
description: 'Name of GitHub page repository'
required: true
PA_TOKEN:
description: 'GitHub Personal Access Token'
required: true
BUILD_PATH:
description: 'Name of build directory'
required: true
USERNAME:
description: 'Who to greet'
required: false
default: '${GITHUB_ACTOR}'
EMAIL:
description: 'Who to greet'
required: false
default: '${GITHUB_ACTOR}@users.noreply.github.com'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.AUTHOR }}
- ${{ inputs.GITHUB_PAGE_NAME }}
- ${{ inputs.PA_TOKEN }}
- ${{ inputs.BUILD_PATH }}
- ${{ inputs.USERNAME }}
- ${{ inputs.EMAIL }}