diff --git a/.drone.yml b/.drone.yml index e04c850..39bc14c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,26 +4,26 @@ type: docker name: node20 steps: - - name: install-deps - image: node:20 - commands: - - npm install - - name: lint - image: node:20 - depends_on: - - install-deps - commands: - - npm run lint - - name: build - image: node:20 - depends_on: - - install-deps - commands: - - npm run build + # - name: install-deps + # image: node:20 + # commands: + # - npm install + # - name: lint + # image: node:20 + # depends_on: + # - install-deps + # commands: + # - npm run lint + # - name: build + # image: node:20 + # depends_on: + # - install-deps + # commands: + # - npm run build - name: deploy-production image: node:20 - depends_on: - - build + # depends_on: + # - build environment: SSH_KEY: from_secret: DEPLOYMENT_SSH_KEY diff --git a/deploy.sh b/deploy.sh index 4ff5fcb..0c13b64 100644 --- a/deploy.sh +++ b/deploy.sh @@ -8,7 +8,7 @@ trap "rm -rf $DIR" EXIT pushd $DIR -git clone file:///srv/git/www/class-profile-2023.git --depth=1 +git clone https://git.csclub.uwaterloo.ca/www/class-profile-2023 --depth=1 cd class-profile-2023 export NEXT_PUBLIC_BASE_PATH="/classprofile/2023"