diff --git a/.gitignore b/.gitignore index 3b0ec47e9307..8c7d72ca40ef 100644 --- a/.gitignore +++ b/.gitignore @@ -146,8 +146,6 @@ Network Trash Folder Temporary Items .apdisk -**/*/release-ci.sh -!release-ci.sh sync_sheets.sh **/*/dist/*.html diff --git a/Makefile b/Makefile index 344d51c96704..188283afd0cd 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,5 @@ SHELL := /bin/bash -# Change this value to whichever variant you're currently testing a certain sheet with -DEFAULT_RELEASE_SCRIPT := release-ci.sh -CDN_SHEETS_FOLDER := custom-sheets-staging - listing: fd . --exclude contrib --type d --max-depth 1 | sort diff --git a/release-ci.sh b/release-ci.sh deleted file mode 100755 index 461fdbfa92ec..000000000000 --- a/release-ci.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# You need GCloud Access to the dropbox to run this script - -CURRENT_DIR=$(printf '%s\n' "${PWD##*/}") - -gcloud storage rsync --project=roll20-actual ./dist "gs://roll20-cdn/$CDN_SHEETS_FOLDER/$CURRENT_DIR/dist" --delete-unmatched-destination-objects --cache-control='no-cache' -gcloud storage rsync --project=roll20-actual ./translations "gs://roll20-cdn/$CDN_SHEETS_FOLDER/$CURRENT_DIR/translations" --delete-unmatched-destination-objects --cache-control='no-cache' || true -