PostgreSQL-For-Wordpress / postgresql-for-wordpress

A maintained fork of https://wordpress.org/plugins/postgresql-for-wordpress/
GNU General Public License v2.0
220 stars 71 forks source link

Publish package on WP registry #34

Open mattbucci opened 10 months ago

mattbucci commented 10 months ago

Now that the old plugin has been removed from the WP registry I'm wondering if we can get this plugin published their instead and assume ownership over that community

mattbucci commented 10 months ago

Doesn't look like we can assume ownership, but it's possible to get it hosted there

mattbucci commented 10 months ago

It's likely we should resolve this before publishing: https://github.com/PostgreSQL-For-Wordpress/postgresql-for-wordpress/issues/32

As of now it complains that we don't conform to plugin norms and list things like plugin name, etc

mattbucci commented 7 months ago

Once published we can create a github workflow to keep wordpress registry up to date when new releases are tagged.

name: Deploy to WordPress.org

on:
  push:
    tags:
    - "*"

jobs:
  tag:
    name: New tag
    runs-on: ubuntu-latest
    steps:
    - name: Checkout code
      uses: actions/checkout@v2

- name: WordPress Plugin Deploy
  uses: 10up/action-wordpress-plugin-deploy@master
  env:
    SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
    SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}