We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85f341b commit 16c790fCopy full SHA for 16c790f
.github/workflows/publish-wiki.yml
@@ -30,15 +30,20 @@ jobs:
30
if: github.repository == 'PHPCSStandards/PHP_CodeSniffer-documentation'
31
32
runs-on: ubuntu-latest
33
+
34
steps:
35
- name: Checkout code
36
uses: actions/checkout@v4
37
38
+ - name: Copy wiki files to temporary location
39
+ shell: bash
40
+ run: cp -v -a wiki _wiki
41
42
- name: Deploy to wiki
43
uses: Andrew-Chen-Wang/github-wiki-action@v4
44
with:
45
strategy: 'clone'
- path: 'wiki/'
46
+ path: '_wiki/'
47
# commit-message: ...
48
# repository: PHPCSStandards/PHP_CodeSniffer
49
# token: ${{ secrets.PHPCS_GITHUB_TOKEN }}
.gitignore
@@ -1 +1,2 @@
1
+_wiki/
2
node_modules/
0 commit comments