mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-23 04:53:06 +00:00
Merge branch 'main' into move_matrix_and_admin_to_person
This commit is contained in:
commit
e4ead96d3a
2 changed files with 24 additions and 29 deletions
|
@ -1,6 +1,7 @@
|
||||||
use activitystreams::{base::AnyBase, context};
|
use activitystreams::{base::AnyBase, context};
|
||||||
use lemmy_utils::LemmyError;
|
use lemmy_utils::LemmyError;
|
||||||
use serde_json::json;
|
use serde_json::json;
|
||||||
|
use url::Url;
|
||||||
|
|
||||||
pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
||||||
let context_ext = AnyBase::from_arbitrary_json(json!(
|
let context_ext = AnyBase::from_arbitrary_json(json!(
|
||||||
|
@ -8,10 +9,15 @@ pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
||||||
"sc": "http://schema.org#",
|
"sc": "http://schema.org#",
|
||||||
"sensitive": "as:sensitive",
|
"sensitive": "as:sensitive",
|
||||||
"stickied": "as:stickied",
|
"stickied": "as:stickied",
|
||||||
|
"pt": "https://join.lemmy.ml#",
|
||||||
"comments_enabled": {
|
"comments_enabled": {
|
||||||
"kind": "sc:Boolean",
|
"type": "sc:Boolean",
|
||||||
"id": "pt:commentsEnabled"
|
"id": "pt:commentsEnabled"
|
||||||
}
|
}
|
||||||
}))?;
|
}))?;
|
||||||
Ok(vec![AnyBase::from(context()), context_ext])
|
Ok(vec![
|
||||||
|
AnyBase::from(context()),
|
||||||
|
context_ext,
|
||||||
|
AnyBase::from(Url::parse("https://w3id.org/security/v1")?),
|
||||||
|
])
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,29 +4,33 @@ set -e
|
||||||
|
|
||||||
# Creating the new tag
|
# Creating the new tag
|
||||||
new_tag="$1"
|
new_tag="$1"
|
||||||
#third_semver=$(echo $new_tag | cut -d "." -f 3)
|
third_semver=$(echo $new_tag | cut -d "." -f 3)
|
||||||
|
|
||||||
# Setting the version on the front end
|
|
||||||
cd ../../
|
|
||||||
# Setting the version on the backend
|
# Setting the version on the backend
|
||||||
|
pushd ../../
|
||||||
echo "pub const VERSION: &str = \"$new_tag\";" > "crates/utils/src/version.rs"
|
echo "pub const VERSION: &str = \"$new_tag\";" > "crates/utils/src/version.rs"
|
||||||
git add "crates/utils/src/version.rs"
|
git add "crates/utils/src/version.rs"
|
||||||
# Setting the version for Ansible
|
popd
|
||||||
echo $new_tag > "ansible/VERSION"
|
|
||||||
git add "ansible/VERSION"
|
|
||||||
|
|
||||||
cd docker/prod || exit
|
|
||||||
|
|
||||||
# Changing various references to the Lemmy version
|
# Changing various references to the Lemmy version
|
||||||
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../dev/docker-compose.yml
|
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../dev/docker-compose.yml
|
||||||
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml
|
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml
|
||||||
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../prod/docker-compose.yml
|
|
||||||
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
|
|
||||||
|
|
||||||
git add ../dev/docker-compose.yml
|
git add ../dev/docker-compose.yml
|
||||||
git add ../prod/docker-compose.yml
|
|
||||||
git add ../federation/docker-compose.yml
|
git add ../federation/docker-compose.yml
|
||||||
|
|
||||||
|
# The ansible and docker installs should only update for non release-candidates
|
||||||
|
# IE, when the third semver is a number, not '2-rc'
|
||||||
|
if [ ! -z "${third_semver##*[!0-9]*}" ]; then
|
||||||
|
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
|
||||||
|
git add ../prod/docker-compose.yml
|
||||||
|
|
||||||
|
# Setting the version for Ansible
|
||||||
|
pushd ../../
|
||||||
|
echo $new_tag > "ansible/VERSION"
|
||||||
|
git add "ansible/VERSION"
|
||||||
|
popd
|
||||||
|
fi
|
||||||
|
|
||||||
# The commit
|
# The commit
|
||||||
git commit -m"Version $new_tag"
|
git commit -m"Version $new_tag"
|
||||||
git tag $new_tag
|
git tag $new_tag
|
||||||
|
@ -34,21 +38,6 @@ git tag $new_tag
|
||||||
# export COMPOSE_DOCKER_CLI_BUILD=1
|
# export COMPOSE_DOCKER_CLI_BUILD=1
|
||||||
# export DOCKER_BUILDKIT=1
|
# export DOCKER_BUILDKIT=1
|
||||||
|
|
||||||
# # Rebuilding docker
|
|
||||||
# if [ $third_semver -eq 0 ]; then
|
|
||||||
# # TODO get linux/arm/v7 build working
|
|
||||||
# # Build for Raspberry Pi / other archs too
|
|
||||||
# docker buildx build --platform linux/amd64,linux/arm64 ../../ \
|
|
||||||
# --file Dockerfile \
|
|
||||||
# --tag dessalines/lemmy:$new_tag \
|
|
||||||
# --push
|
|
||||||
# else
|
|
||||||
# docker buildx build --platform linux/amd64 ../../ \
|
|
||||||
# --file Dockerfile \
|
|
||||||
# --tag dessalines/lemmy:$new_tag \
|
|
||||||
# --push
|
|
||||||
# fi
|
|
||||||
|
|
||||||
# Push
|
# Push
|
||||||
git push origin $new_tag
|
git push origin $new_tag
|
||||||
git push
|
git push
|
||||||
|
|
Loading…
Reference in a new issue