diff --git a/.distignore b/.distignore new file mode 100644 index 00000000..b0deac7b --- /dev/null +++ b/.distignore @@ -0,0 +1,16 @@ +/.github +/.git +/.wordpress-org +/.vscode +/node_modules +/vendor +.distignore +.gitattributes +.gitignore +.nvmrc +composer.json +composer.lock +package-lock.json +package.json +phpcs.xml +readme.md diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..6d47668d --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,31 @@ +name: Deploy to WordPress.org +on: + release: + types: [published] + + workflow_dispatch: + +jobs: + tag: + name: New release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: WordPress Plugin Deploy + id: deploy + uses: 10up/action-wordpress-plugin-deploy@stable + with: + generate-zip: true + env: + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + - name: Upload release asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip + asset_name: ${{ github.event.repository.name }}.zip + asset_content_type: application/zip