Skip to content

I photoshopped another photo of myself onto the original sorry Usha #10

I photoshopped another photo of myself onto the original sorry Usha

I photoshopped another photo of myself onto the original sorry Usha #10

Workflow file for this run

name: Deployment
on:
push:
branches:
- master
jobs:
deploy:
runs-on: self-hosted
environment:
name: production
url: https://robotics-club.utm.utoronto.ca/
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: create env files
run: echo "${{ secrets.ENV }}" > .env;
- name: compose build
run: docker compose build
- name: compose up
run: docker compose up -d
- name: cleanup
run: |
docker system prune -a -f