From 426220bbfea4d558ff24e25e213ba2df198e4f5f Mon Sep 17 00:00:00 2001 From: Stavros Korokithakis Date: Fri, 20 Nov 2020 21:29:38 +0200 Subject: [PATCH] Don't deploy to NeoCities --- .gitlab-ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cbfc2eb..c0cdae5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,20 +22,3 @@ pages: - public only: - master - -neocities: - image: ruby:2.6.5 - dependencies: - - build - stage: deploy - environment: neocities - script: - - echo -e "source 'https://rubygems.org'\n\ngem 'neocities'" > Gemfile - - gem install bundler - - bundle install - # Place user-provide token - - if [ -z "$NEOCITIES_TOKEN" ]; then echo Please see README.md for information on how to set your Neocities API token && false; else mkdir -p $HOME/.config/neocities && mv $NEOCITIES_TOKEN $HOME/.config/neocities/config; fi - - cd public - - bundle exec neocities push . - only: - - master