Skip to content

Commit

Permalink
Set up GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Ugoku committed Jan 16, 2024
1 parent 08dda8a commit 0d207f4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/.wordpress-org
/.git
/.github
/node_modules
.distignore
.gitattributes
.gitignore
/bin
/tests
deploy.sh
package.json
package-lock.json
phpunit.xml
renovate.json
17 changes: 17 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy to WordPress
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 }}
SLUG: recras

0 comments on commit 0d207f4

Please sign in to comment.