Skip to content

feat(page): adds privacy policy page #9

feat(page): adds privacy policy page

feat(page): adds privacy policy page #9

Workflow file for this run

name: Deploy to Ubuntu Server
on: [push]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Generate .env file
uses: SpicyPizza/[email protected]
with:
envkey_VITE_API_URL: ${{ secrets.VITE_API_URL }}
- name: Build Docker images
run: |
docker build . -t overal-x:${{ github.sha }}
run:
runs-on: self-hosted
needs:
- build
steps:
- name: remove old container
run: |
docker rm --force overal-x
- name: run new container
run: |
docker run -d --restart unless-stopped --name overal-x -p 6100:4173 overal-x:${{ github.sha }}