We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f4cae8 commit 1efc9bbCopy full SHA for 1efc9bb
.github/workflows/documentation.yml
@@ -12,10 +12,10 @@ on: # yamllint disable-line rule:truthy
12
description: "The component to deploy the documentation for"
13
required: true
14
type: "string"
15
+ secrets:
16
token:
17
description: "The token to use to push to the docs repository"
18
- type: "string"
19
20
jobs:
21
documentation:
@@ -46,7 +46,7 @@ jobs:
46
uses: "actions/checkout@v6"
47
with:
48
repository: "phpDocumentor/docs"
49
- token: "${{ inputs.token }}"
+ token: "${{ secrets.token }}"
50
path: "docs"
51
52
- name: "Download"
@@ -68,5 +68,5 @@ jobs:
68
uses: "ad-m/github-push-action@master"
69
70
directory: "docs"
71
- github_token: "${{ inputs.token }}"
+ github_token: "${{ secrets.token }}"
72
0 commit comments