Skip to content

Fix workflow location #35

Fix workflow location

Fix workflow location #35

Workflow file for this run

name: Deploy to Amplify Stage
on:
push:
branches: [main]
workflow_dispatch:
inputs:
ref:
type: string
required: true
description: Git ref
default: main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: deploy
run: |
URL="${{ secrets.AMPLIFY_WEBHOOK_STAGE }}"
curl -X POST -d {} "$URL" -H "Content-Type: application/json"