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 b859144 commit 76d8f35Copy full SHA for 76d8f35
.github/workflows/wordpress-plugin-deploy.yml
@@ -0,0 +1,20 @@
1
+name: Deploy to WordPress.org
2
+on:
3
+ push:
4
+ tags:
5
+ - "*"
6
+ - "!*-*"
7
+jobs:
8
+ tag:
9
+ name: New tag
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - uses: php-actions/composer@v5
14
+ with:
15
+ args: --ignore-platform-reqs
16
+ - name: WordPress Plugin Deploy
17
+ uses: 10up/action-wordpress-plugin-deploy@stable
18
+ env:
19
+ SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
20
+ SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
0 commit comments