diff --git a/Jenkinsfile b/Jenkinsfile index ac454c6fc1..d2585bd8fd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,8 +18,8 @@ pipeline { } environment { DOCKER_REGISTRY = 'ghcr.io' - GITHUB_ORG = 'funamitech' - DOCKER_IMAGE = "${env.DOCKER_REGISTRY}/${env.GITHUB_ORG}/mastodon" + GITHUB_ORG = 'cloudtoys' + DOCKER_IMAGE = "${env.DOCKER_REGISTRY}/${env.GITHUB_ORG}/yurutoot" GHCR_TOKEN = credentials('siliconforest-jenkins-github-pat-package-rw') } stages { @@ -37,7 +37,7 @@ pipeline { env.DOCKER_LATEST = 'true' } env.GITHUB_REPOSITORY = "${params.URL}" - env.SOURCE_BASE_URL = "https://github.com/funamitech/mastodon" // I'm lazy. Will fix it later + env.SOURCE_BASE_URL = "https://github.com/CloudToys/YuruToot" // I'm lazy. Will fix it later env.SOURCE_TAG = "${env.BRANCH_NAME}" } } diff --git a/README.md b/README.md index 51c8cb00cc..5d0a1adc73 100644 --- a/README.md +++ b/README.md @@ -166,4 +166,3 @@ This program is free software: you can redistribute it and/or modify it under th This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . ->>>>>>> 3341db939cd077820ad598b0445d02ab2382eaf4 diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 5cf6ac0682..7fd2cd05d2 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -25,7 +25,7 @@ module Mastodon end def build_metadata - 'YRYRi' + 'puyo' end def to_a @@ -44,7 +44,7 @@ module Mastodon end def repository - ENV.fetch('GITHUB_REPOSITORY', 'funamitech/mastodon') + ENV.fetch('GITHUB_REPOSITORY', 'CloudToys/YuruToot') end def source_base_url diff --git a/spec/presenters/instance_presenter_spec.rb b/spec/presenters/instance_presenter_spec.rb index ddf1ad2eb1..c4e9814044 100644 --- a/spec/presenters/instance_presenter_spec.rb +++ b/spec/presenters/instance_presenter_spec.rb @@ -85,7 +85,7 @@ describe InstancePresenter do end it 'defaults to the core glitch-soc repo URL' do - expect(instance_presenter.source_url).to eq('https://github.com/funamitech/mastodon') + expect(instance_presenter.source_url).to eq('https://github.com/CloudToys/YuruToot') end end end