Skip to content

Commit a2f83f8

Browse files
committed
feat: automate release to wordpress plugin repository
1 parent 7935517 commit a2f83f8

12 files changed

+55
-0
lines changed

.distignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/.idea
2+
/.git
3+
/.github
4+
/.wordpress-org
5+
.gitignore
6+
.distignore
7+
.gitattributes
8+
readme.md

.github/workflows/deploy.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Deploy to WordPress Plugin Repository
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Install dependencies
19+
uses: php-actions/composer@master
20+
with:
21+
php_version: '8.4'
22+
23+
- name: Deploy
24+
uses: 10up/[email protected]
25+
with:
26+
generate-zip: true
27+
env:
28+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
29+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
30+
SLUG: honeybadger-application-monitoring
31+
32+
- name: Create GitHub Release
33+
uses: softprops/[email protected]
34+
with:
35+
files: ${{github.workspace}}/${{ github.event.repository.name }}.zip
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,5 @@ fabric.properties
7979

8080
vendor/
8181

82+
.DS_Store
83+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ A WordPress plugin for error tracking with [Honeybadger](https://www.honeybadger
2828
- [x] User context tracking
2929
- [ ] Custom error type filtering
3030

31+
32+
## Releasing
33+
34+
1. Update the version number in `honeybadger-application-monitoring.php`.
35+
2. Update the `readme.txt` file with the new version number.
36+
3. Push a new tag to the repository with the new version number.
37+
4. This should trigger the GitHub Actions workflow to build the plugin and deploy it to the WordPress Plugin Directory.
38+
3139
## Support
3240

3341
For issues and feature requests, please [create an issue](https://github.com/honeybadger-io/honeybadger-wordpress/issues) on GitHub.

0 commit comments

Comments
 (0)