Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
Add manual deploy action
Browse files Browse the repository at this point in the history
Resolves #235
  • Loading branch information
Chalarangelo authored Feb 25, 2021
1 parent 20bee56 commit a5d0885
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy-production-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Deploy production manual
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run deployment script
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
chmod +x ./src/jobs/deploy.sh
./src/jobs/deploy.sh production

0 comments on commit a5d0885

Please sign in to comment.