diff --git a/.github/workflows/deploy-to-readme.yml b/.github/workflows/deploy-to-readme.yml new file mode 100644 index 0000000..599915b --- /dev/null +++ b/.github/workflows/deploy-to-readme.yml @@ -0,0 +1,16 @@ +name: Update readme.txt and assets +on: + push: + branches: [trunk] +jobs: + trunk: + name: Push to trunk + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - run: mkdir -p .wordpress-org + - name: WordPress.org plugin asset/readme update + uses: 10up/action-wordpress-plugin-asset-update@stable + env: + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} diff --git a/.github/workflows/deploy-to-wp.yml b/.github/workflows/deploy-to-wp.yml new file mode 100644 index 0000000..c2facc4 --- /dev/null +++ b/.github/workflows/deploy-to-wp.yml @@ -0,0 +1,16 @@ +name: Deploy tagged release to WordPress.org +on: + push: + tags: + - '*' +jobs: + tag: + name: New tag + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: WordPress Plugin Deploy + uses: 10up/action-wordpress-plugin-deploy@stable + env: + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }}