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.
2 parents 8380a2c + d41391c commit 1fbca61Copy full SHA for 1fbca61
.github/workflows/plugin-build.yml
@@ -51,6 +51,9 @@ jobs:
51
git checkout -b main-built
52
git config --global user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
53
git config --global user.name "${{ github.actor }}"
54
+ git config --global credential.helper "store --file=.git/credentials"
55
+ echo "username=${{ secrets.GITHUB_ACTOR }}" >> .git/credentials
56
+ echo "password=${{ secrets.GITHUB_TOKEN }}" >> .git/credentials
57
git add -A # Stage all changes, including untracked files
58
git clean -fdX
59
git commit -m "Built WordPress plugin" --no-verify
0 commit comments