Skip to content

add 404 msg on /splash/:id #15

add 404 msg on /splash/:id

add 404 msg on /splash/:id #15

Workflow file for this run

name: Deploy
on:
push:
branches: ["master"]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Build image
run: docker build -t rustapi .
- name: Run image
run: |
docker stop rustapi || true
docker rm rustapi || true
docker run -d -p 2004:2004 -v sqlite:/sqlite -e DBPATH=/sqlite/sqlite.db --name rustapi --restart always rustapi