Merge pull request #140 from extendify/update-changelog #147
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 internal services | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger deployment at library.extendify.com | |
uses: fjogeleit/http-request-action@master | |
with: | |
url: ${{ secrets.DEPLOY_WEBHOOK_LIBRARY }} | |
method: 'POST' | |
- name: Trigger deployment at onboarding.extendify.com | |
uses: fjogeleit/http-request-action@master | |
with: | |
url: ${{ secrets.DEPLOY_WEBHOOK_ONBOARDING }} | |
method: 'POST' | |
- name: Trigger deployment at launch.extendify.com | |
uses: fjogeleit/http-request-action@master | |
with: | |
url: ${{ secrets.DEPLOY_WEBHOOK_LAUNCH }} | |
method: 'POST' |