1
0

branding...?

Signed-off-by: 무라쿠모 <space@psec.dev>
This commit is contained in:
オスカー、 2024-05-22 13:54:19 +09:00
parent b14cb57851
commit 3eaf03e798
Signed by: SWREI
GPG Key ID: 139D6573F92DA9F7
4 changed files with 6 additions and 7 deletions

6
Jenkinsfile vendored
View File

@ -18,8 +18,8 @@ pipeline {
} }
environment { environment {
DOCKER_REGISTRY = 'ghcr.io' DOCKER_REGISTRY = 'ghcr.io'
GITHUB_ORG = 'funamitech' GITHUB_ORG = 'cloudtoys'
DOCKER_IMAGE = "${env.DOCKER_REGISTRY}/${env.GITHUB_ORG}/mastodon" DOCKER_IMAGE = "${env.DOCKER_REGISTRY}/${env.GITHUB_ORG}/yurutoot"
GHCR_TOKEN = credentials('siliconforest-jenkins-github-pat-package-rw') GHCR_TOKEN = credentials('siliconforest-jenkins-github-pat-package-rw')
} }
stages { stages {
@ -37,7 +37,7 @@ pipeline {
env.DOCKER_LATEST = 'true' env.DOCKER_LATEST = 'true'
} }
env.GITHUB_REPOSITORY = "${params.URL}" 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}" env.SOURCE_TAG = "${env.BRANCH_NAME}"
} }
} }

View File

@ -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. 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 <https://www.gnu.org/licenses/>. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
>>>>>>> 3341db939cd077820ad598b0445d02ab2382eaf4

View File

@ -25,7 +25,7 @@ module Mastodon
end end
def build_metadata def build_metadata
'YRYRi' 'puyo'
end end
def to_a def to_a
@ -44,7 +44,7 @@ module Mastodon
end end
def repository def repository
ENV.fetch('GITHUB_REPOSITORY', 'funamitech/mastodon') ENV.fetch('GITHUB_REPOSITORY', 'CloudToys/YuruToot')
end end
def source_base_url def source_base_url

View File

@ -85,7 +85,7 @@ describe InstancePresenter do
end end
it 'defaults to the core glitch-soc repo URL' do 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 end
end end