Skip to content
Merged

Deploy #1157

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/google-gce-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: "Deploy to GCE development"

on:
workflow_dispatch:

push:
branches: [ "develop" ]
branches:
- develop

env:
GCP_PROJECT_ID: ${{ vars.GCP_PROJECT_ID }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/google-gce-prod.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: "Deploy to GCE production"

on:
workflow_dispatch:

push:
branches: [ "main" ]
branches:
- main

env:
GCP_PROJECT_ID: ${{ vars.GCP_PROJECT_ID }}
Expand Down
3 changes: 2 additions & 1 deletion app/pages/About/Background.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import "./Background.css";
import Anchor from "components/Anchor";

const videos = [
"https://www.youtube.com/embed/VJ29nJl-xWw"
"https://www.youtube.com/embed/VJ29nJl-xWw?si=F_wtC81GGDpaxmR1"
// "https://www.youtube.com/embed/VJ29nJl-xWw"
// "https://player.vimeo.com/video/166762095?badge=0&byline=0&portrait=0&title=0"
];

Expand Down