Skip to content

feat: automate release to wordpress plugin repository #1

feat: automate release to wordpress plugin repository

feat: automate release to wordpress plugin repository #1

Workflow file for this run

name: Deploy to WordPress Plugin Repository
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: php-actions/composer@master
with:
php_version: '8.4'
- name: Deploy
uses: 10up/[email protected]
with:
generate-zip: true
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: honeybadger-application-monitoring
- name: Create GitHub Release
uses: softprops/[email protected]
with:
files: ${{github.workspace}}/${{ github.event.repository.name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}