Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

Commit f63f6c1

Browse files
authored
Merge pull request #250 from wp-graphql/fix-wp-org-deploy
ci: debug SVN creds
2 parents 0ec7b42 + 45ed021 commit f63f6c1

4 files changed

Lines changed: 71 additions & 56 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"wpgraphql-ide": patch
3+
---
4+
5+
test

.distignore

Lines changed: 0 additions & 56 deletions
This file was deleted.

.gitattributes

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/.git export-ignore
2+
/.github export-ignore
3+
/.idea export-ignore
4+
/.log export-ignore
5+
/.vscode export-ignore
6+
/.wordpress-org export-ignore
7+
/bin export-ignore
8+
/github export-ignore
9+
/plugin-build export-ignore
10+
/documentation export-ignore
11+
/docs export-ignore
12+
/img export-ignore
13+
/phpstan export-ignore
14+
/tests export-ignore
15+
/docker export-ignore
16+
/docker-output export-ignore
17+
/node_modules export-ignore
18+
plugins/help-panel/node_modules export-ignore
19+
plugins/query-composer-panel/node_modules export-ignore
20+
plugins/ai-assistant-panel/node_modules export-ignore
21+
plugins/*/.npmrc export-ignore
22+
/packages export-ignore
23+
/artifacts export-ignore
24+
/vendor export-ignore
25+
/src export-ignore
26+
/wpgraphql-ide export-ignore
27+
.DS_Store export-ignore
28+
.coveralls.yml export-ignore
29+
.distignore export-ignore
30+
.dockerignore export-ignore
31+
.env export-ignore
32+
.env.dist export-ignore
33+
.gitattributes export-ignore
34+
.gitignore export-ignore
35+
.github_changelog_generator export-ignore
36+
.wp-env.json export-ignore
37+
c3.php export-ignore
38+
CHANGELOG.md export-ignore
39+
codeception.dist.yml export-ignore
40+
codeception.yml export-ignore
41+
composer.json export-ignore
42+
composer.lock export-ignore
43+
docker-compose.yml export-ignore
44+
netlify.toml export-ignore
45+
package-lock.json export-ignore
46+
package.json export-ignore
47+
phpcs.xml export-ignore
48+
phpcs.xml.dist export-ignore
49+
phpstan.neon.dist export-ignore
50+
phpunit.xml.dist export-ignore
51+
README.md export-ignore
52+
CONTRIBUTING.md export-ignore
53+
ACTIONS_AND_FILTERS.md export-ignore
54+
schema.graphql export-ignore

.github/workflows/deploy-to-wordpress.org.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@ jobs:
2929

3030
- name: Build plugin
3131
run: npm run build
32+
33+
- name: Debug SVN secret presence
34+
run: |
35+
if [ -z "${{ secrets.SVN_USERNAME }}" ] || [ -z "${{ secrets.SVN_PASSWORD }}" ]; then
36+
echo "SVN credentials are NOT set!";
37+
exit 1;
38+
else
39+
echo "SVN credentials are detected.";
40+
fi
41+
env:
42+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
43+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
3244

3345
- name: WordPress Plugin Deploy
3446
uses: 10up/action-wordpress-plugin-deploy@2.1.1

0 commit comments

Comments
 (0)