Skip to content

Commit

Permalink
add deploy target action
Browse files Browse the repository at this point in the history
  • Loading branch information
YuraVolk committed Sep 13, 2023
1 parent bc2f9a9 commit 13581dd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ on:
- cron: "59 */12 1 1,4,7,10 *"

jobs:
deploy-target:
name: Deploy Target Entry
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: 16

- name: Install surge
run: npm install --global surge

- name: Run Surge
run: surge ./target/build practice-landings-catalog.surge.sh --token ${{ secrets.SURGE_TOKEN }}

deploy-betting-template:
name: Deploy Betting Template
runs-on: ubuntu-latest
Expand Down

0 comments on commit 13581dd

Please sign in to comment.