Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 7f7d09b

Browse files
committed
feat: add workflow to auto deploy on host
1 parent 65fd6fd commit 7f7d09b

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

.github/workflows/deployment.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Deploy MITG Logistics
19+
run: curl https://host.mitg.gg/api/box/deploy/${{secrets.DEPLOYMENT_TOKEN}}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"cSpell.words": ["envalid", "fieldname", "originalname"]
2+
"cSpell.words": ["envalid", "fieldname", "MITG", "originalname"]
33
}

0 commit comments

Comments
 (0)