Skip to content

Commit 7bf68f6

Browse files
committed
Restore manual production deploy
Allows deployment without checking for changed files.
1 parent 9311b6f commit 7bf68f6

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Deploy production (manual)
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v1
9+
- name: Run deployment script
10+
env:
11+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
12+
run: |
13+
chmod +x ./src/scripts/deploy.sh
14+
./src/scripts/deploy.sh production

0 commit comments

Comments
 (0)