Update contact information in Contact component #208
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: Update dev environment | |
on: | |
push: | |
branches: [ development] | |
jobs: | |
call_api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: HTTP Request Action | |
uses: fjogeleit/[email protected] | |
with: | |
url: ${{ secrets.API_URL }} | |
method: 'POST' | |
data: >- | |
{ | |
"id": "${{ secrets.API_ID }}" , | |
"api_key": "${{ secrets.API_KEY }}" | |
} |