Skip to content

Merge pull request #199 from ThatConference/feat/ticket-refund-end-date #31

Merge pull request #199 from ThatConference/feat/ticket-refund-end-date

Merge pull request #199 from ThatConference/feat/ticket-refund-end-date #31

Workflow file for this run

name: CI on Push Master
on:
push:
branches:
- master
jobs:
build:
name: Build Events API for deploy
uses: thatconference/that-gh-actions/.github/workflows/build-validate-api.yml@main
with:
apiName: events
isForDeploy: true
branchName: ${{ github.ref_name }}
nodeVersion: 18
secrets:
SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}
deploy:
name: Deploy Events API to Google Run
needs: build
uses: thatconference/that-gh-actions/.github/workflows/deploy-api.yml@main
with:
apiName: events
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()