Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Deployment authentication, remove uptime message #666

Merged
merged 2 commits into from
Aug 28, 2024
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Authenticate Google Cloud Service Account
run: gcloud auth activate-service-account ${{secrets.GCP_SERVICE_ACCOUNT}} --key-file=service_account.json

- name: Verify tests pass
run: python main_test.py

Expand Down
6 changes: 0 additions & 6 deletions static/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,6 @@ function reportBugOld() {
window.open("https://github.com/EastsidePreparatorySchool/epschedule/issues");
}

function openUp(){
var up = document.getElementById("up");
up.open();
}

function about() {
var about = document.getElementById("about");
about.open();
Expand Down Expand Up @@ -252,7 +247,6 @@ function updateMainSchedule() {
renderSchedule(globalDate, userSchedule, "full", scheduleElement, lunches);
// also update github info
renderGitHubCommits();
openUp();
}
function renderToast(text) {
toast = document.getElementById("toast");
Expand Down
7 changes: 0 additions & 7 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,6 @@
</paper-header-panel>
</neon-animated-pages>


<paper-dialog class="uptime-dialog" id="up" open="true">
<div id="uppanel">
<h2>EPSchedule will be up on 8/28 around 5 pm PST</h2>
</div>
</paper-dialog>

<paper-dialog class="about-dialog" id="about">
<div id="aboutpanel">
<h2>About</h2>
Expand Down
Loading