Skip to content

Commit e534ff5

Browse files
committedSep 23, 2024··
Update action to reflect reality
This was from an earlier design choice, and I just forgot to remove some remaining traces of the old `gh-pages` stuff.
1 parent 991fdcb commit e534ff5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ It's a multi-step process.
3131
```yml
3232
- uses: MithrilJS/infra/deploy@main
3333
with:
34-
type: gh-pages
34+
type: github-pages
3535
token: ${{ secrets.DEPLOY_TOKEN }}
3636
```
3737
To deploy a package not located in the repo root, set the `root_dir` option:

‎deploy/action.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: Request a deployment
22

33
inputs:
44
type:
5-
description: The type of deployment to perform.
5+
description: |
6+
The type of deployment to perform. Currently must be one of the following:
7+
- `npm`
8+
- `github-pages`
69
required: true
710
root_dir:
811
description: The directory to the root. Defaults to `GITHUB_WORKSPACE`.

0 commit comments

Comments
 (0)
Please sign in to comment.