Bumping version to 5.0.30.rc.020. Previous Commit message: "No .VERSI… #411
This file contains 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 to demoee.org | |
on: | |
push: | |
branches: [master] | |
# Allow to run on demand | |
workflow_dispatch: | |
jobs: | |
deploy-to-barista-site: | |
runs-on: ubuntu-latest | |
name: Deploy to demoee.org | |
steps: | |
- name: Deploy via ssh | |
uses: garygrossgarten/github-action-ssh@release | |
with: | |
command: source ~/deploy-scripts/deploy-to-demoee.sh "event-espresso-core" | |
host: ${{ secrets.SERVER_EE_DEMO_SITES_HOST }} | |
username: ${{ secrets.SERVER_EE_DEVBOX_SITES_USERNAME }} | |
passphrase: ${{ secrets.SERVER_EE_DEVBOX_SITES_PASSPHRASE }} | |
privateKey: ${{ secrets.SERVER_EE_DEVBOX_SITES_PRIVATE_KEY }} |