Merge pull request #77 from happyprime/repo-sync/projects/default #15
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
# This file is managed in https://github.com/happyprime/projects | |
name: Production deployment from trunk | |
on: | |
push: | |
branches: [ trunk ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Deploy to server | |
if: success() | |
uses: easingthemes/[email protected] | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.REMOTE_SSH_PRIVATE_KEY }} | |
ARGS: "-rltgoDzvO --include-from=.deploy_include --exclude-from=.deploy_ignore --delete" | |
SOURCE: "./" | |
REMOTE_HOST: ${{ secrets.REMOTE_HOST }} | |
REMOTE_USER: ${{ secrets.REMOTE_USER }} | |
REMOTE_PORT: ${{ secrets.REMOTE_PORT }} | |
TARGET: ${{ secrets.REMOTE_TARGET }} | |
- name: Successful deployment Slack notification | |
if: success() | |
uses: wearerequired/slack-messaging-action@v3 | |
with: | |
bot_token: ${{ secrets.SLACK_BOT_TOKEN }} | |
channel: ${{ secrets.SLACK_CHANNEL }} | |
payload: >- | |
{ | |
"icon_emoji": ":shipit:", | |
"unfurl_links": false, | |
"unfurl_media": false, | |
"username": "Happy Prime Deployment: ${{ github.event.sender.login }}", | |
"text": ":white_check_mark: Deployment from the <https://github.com/${{ github.repository }}|${{ github.repository }}> `trunk` branch to ${{ secrets.PRODUCTION_URL }} complete." | |
} | |
- name: Deployment failed Slack notification | |
if: failure() | |
uses: wearerequired/slack-messaging-action@v3 | |
with: | |
bot_token: ${{ secrets.SLACK_BOT_TOKEN }} | |
channel: project-happyprimeweb | |
payload: >- | |
{ | |
"icon_emoji": ":shipit:", | |
"unfurl_links": false, | |
"unfurl_media": false, | |
"username": "Happy Prime Deployment: ${{ github.event.sender.login }}", | |
"text": ":large_red_square: Deployment from the <https://github.com/${{ github.repository }}|${{ github.repository }}> `trunk` branch to ${{ secrets.PRODUCTION_URL }} failed." | |
} |