diff --git a/.distignore b/.distignore new file mode 100644 index 0000000..e13fc06 --- /dev/null +++ b/.distignore @@ -0,0 +1,6 @@ +/assets +/.git +/.github + +.distignore +.gitignore \ No newline at end of file diff --git a/.github/workflows/wordpress-deploy.yml b/.github/workflows/wordpress-deploy.yml new file mode 100644 index 0000000..95026a3 --- /dev/null +++ b/.github/workflows/wordpress-deploy.yml @@ -0,0 +1,17 @@ +name: Deploy to WordPress.org +on: + release: + types: [published] +jobs: + tag: + name: New tag + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: WordPress Plugin Deploy + uses: 10up/action-wordpress-plugin-deploy@master + env: + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + SLUG: wp-ispconfig3 + ASSETS_DIR: assets