Skip to content

Commit

Permalink
Merge pull request #11 from Lewiscowles1986/feature/github-actions-de…
Browse files Browse the repository at this point in the history
…ploy-tags

GitHub Action to deploy on Tagged release
  • Loading branch information
Lewis Cowles authored Dec 26, 2019
2 parents 75e4927 + d6f3006 commit dfde00c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

name: CI

on:
push:
tags:
- "*"

jobs:
tag:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build
run: |
echo "No actions, this plugin is simple"
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@master
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: cd2-fullstory-integration

0 comments on commit dfde00c

Please sign in to comment.