generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 1.16 KB
/
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
35
36
37
name: Analog Publish GitHub Pages
description: Build a static AnalogJS site and deploy it on GitHub Pages
author: Danny Koppenhagen <mail@k9n.dev>
branding:
icon: heart
color: green
inputs:
package-manager:
description: The package manager to be used (`npm`, `yarn`, `pnpm`).
required: false
default: npm
access-token:
description: A personal access token needed to deploy your site after it has been built.
required: true
install-args:
description: Additional arguments that get passed to the install command of the used package manager (e. g. `--legacy-peer-deps`).
required: false
default: ""
build-args:
description: Additional arguments that get passed to `build` script of your `package.json` file.
required: false
default: ""
deploy-dir:
description: The path to the directory to deploy.
required: false
default: dist/analog/public
deploy-branch:
description: The branch where the static site should be deployed.
required: false
default: gh-pages
dry-run:
description: Don't actually deploy if truthy.
required: false
default: "false"
runs:
using: node20
main: dist/index.js