merge feature/change-email into develop #65
Workflow file for this run
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 name 'build-check' is used with GitHub branch rules. Please do not change it! | |
name: "build-check" | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build Docker image | |
run: | | |
echo "Building Docker image..." | |
docker build -t chatterpay-front . | |
- name: Report Status | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
curl -X POST \ | |
-H "Authorization: Bearer $GH_TOKEN" \ | |
-H "Content-Type: application/json" \ | |
-d '{"state": "success", "description": "Check Status Report", "context": "Check Status Report"}' \ | |
https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} | |