Merge pull request #6 from ThatConference/chore/node-20 #7
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: CI on Push Master | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Help API for deploy | |
uses: thatconference/that-gh-actions/.github/workflows/build-validate-api.yml@main | |
with: | |
apiName: help | |
isForDeploy: true | |
branchName: ${{ github.ref_name }} | |
nodeVersion: 18 | |
secrets: | |
SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }} | |
deploy: | |
name: Deploy Help API to Google Run | |
needs: build | |
uses: thatconference/that-gh-actions/.github/workflows/deploy-api.yml@main | |
with: | |
apiName: help | |
runMemory: 256Mi | |
secrets: | |
GCLOUD_AUTH: ${{ secrets.GCLOUD_AUTH }} | |
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | |
SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }} | |
redeploy-gateway: | |
name: Redeploy THAT Gateway container | |
needs: [build,deploy] | |
uses: thatconference/that-gh-actions/.github/workflows/redeploy-gateway.yml@main | |
secrets: | |
GCLOUD_AUTH: ${{ secrets.GCLOUD_AUTH }} | |
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | |
SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }} | |
STELLATE_TOKEN: ${{ secrets.STELLATE_TOKEN }} | |
STELLATE_SERVICE: ${{ secrets.STELLATE_SERVICE }} | |
notifications: | |
name: Workflow notifications | |
needs: [build,deploy,redeploy-gateway] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Notification | |
uses: 8398a7/action-slack@v3 | |
with: | |
fields: repo,message,commit,author,eventName,ref,workflow | |
status: ${{ job.status }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }} | |
if: always() |