Skip to content

fix: enhance variable placeholder regex to support nested dot-path no… #1

fix: enhance variable placeholder regex to support nested dot-path no…

fix: enhance variable placeholder regex to support nested dot-path no… #1

Workflow file for this run

name: Deployment Notification
on:
push:
branches:
- testing
- master
jobs:
call-api-on-testing:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/testing'
steps:
- name: Deployment on testing Branch
run: |
response=$(curl -s -X GET "https://flow.sokt.io/func/scria19d90rL?env=DEV&key=PY")
echo "$response"
call-api-on-master:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Deployment on master Branch
run: |
response=$(curl -s -X GET "https://flow.sokt.io/func/scria19d90rL?env=PROD&key=PY")
echo "$response"