name: Deploy to Production
on:
workflow_dispatch:
jobs:
deploy:
environment: production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./deploy.sh
- name: Notify success
run: echo "Deployment completed" name: Deploy to Production
on:
workflow_dispatch:
jobs:
deploy:
environment: production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./deploy.sh
- name: Notify success
run: echo "Deployment completed"