This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merge pull request #320 from rtCamp/develop #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install SVN ( Subversion ) | |
run: | | |
sudo apt-get update | |
sudo apt-get install subversion | |
- name: WordPress Plugin Deploy | |
uses: 10up/action-wordpress-plugin-deploy@stable | |
env: | |
ASSETS_DIR: wpassets | |
EXCLUDE_LIST: .bowerrc .gitattributes .gitignore .jshintrc .travis.yml CONTRIBUTING.md | |
Gruntfile.js README.md deploy.sh package-lock.json package.json phpcs.xml phpunit.xml | |
tests .babelrc .eslintignore .eslintrc .jscsrc .jshintignore .npmrc .nvmrc webpack.config.js | |
SLUG: transcoder | |
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} |