update deployment #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file was auto generated by the uix git_deploy plugin. Do not manually edit. | |
name: Deploy prod | |
on: push | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: "actions/checkout@v3" | |
with: | |
submodules: recursive | |
- name: Setup Deno | |
uses: "denoland/setup-deno@v1" | |
- name: Deploy UIX App | |
run: "deno run --importmap ./importmap.json -Aqr https://dev.cdn.unyt.org/uix1/run.ts --stage prod --detach" |