Skip to content

Commit

Permalink
chore: add release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonTheAdams committed Mar 25, 2022
1 parent fff3a60 commit 9e05b91
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Build Plugin Pre-Release

on:
release:
types: [ prereleased ]

jobs:
build:
uses: impress-org/givewp-github-actions/.github/workflows/pre-release.yml@master
with:
plugin_slug: give-simple-social-shout
zip_name: give-simple-social-shout
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release to GiveWP.com

on:
release:
types: [ released ]

jobs:
build:
uses: impress-org/givewp-github-actions/.github/workflows/wp-org-release.yml@master
with:
wp_org_slug: simple-social-shout-for-givewp
zip_name: simple-social-shout-for-givewp
text_domain: sss4givewp
install_composer_packages: false
install_npm_packages: false
secrets:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLACK_ANNOUNCEMENT_WEBHOOK: ${{ secrets.SLACK_ANNOUNCEMENT_WEBHOOK }}

0 comments on commit 9e05b91

Please sign in to comment.