From 727444990d44fb23890983a9691ab26588d16065 Mon Sep 17 00:00:00 2001 From: Dennis Huebner Date: Fri, 14 Jul 2023 16:20:26 +0200 Subject: [PATCH] Updated repository organization --- .github/workflows/main.yml | 2 +- .github/workflows/release.yml | 2 +- yang-lsp/gradle/publishing.gradle | 8 ++++---- yang-lsp/release.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ef74aeca..ab793b53 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: run: ./gradlew --no-daemon build copyDist working-directory: yang-lsp - name: Gradle Publish Snapshots - if: env.HAVE_SNAPSHOT == 1 && github.repository == 'theia-ide/yang-lsp' && github.ref == 'refs/heads/master' + if: env.HAVE_SNAPSHOT == 1 && github.repository == 'TypeFox/yang-lsp' && github.ref == 'refs/heads/master' run: ./gradlew --no-daemon publish working-directory: yang-lsp env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1d2982e..39df6923 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: run: ./gradlew --no-daemon build copyDist working-directory: yang-lsp - name: Gradle Publish Release Artifacts - if: env.HAVE_SNAPSHOT == 0 && github.repository == 'theia-ide/yang-lsp' + if: env.HAVE_SNAPSHOT == 0 && github.repository == 'TypeFox/yang-lsp' run: ./gradlew --no-daemon publish working-directory: yang-lsp env: diff --git a/yang-lsp/gradle/publishing.gradle b/yang-lsp/gradle/publishing.gradle index 047b8883..98e5ee7e 100644 --- a/yang-lsp/gradle/publishing.gradle +++ b/yang-lsp/gradle/publishing.gradle @@ -12,11 +12,11 @@ publishing { description = project.description } } - url = 'https://github.com/theia-ide/yang-lsp' + url = 'https://github.com/TypeFox/yang-lsp' scm { - connection = 'scm:git:git@github.com:theia-ide/yang-lsp.git' - developerConnection = 'scm:git:git@github.com:theia-ide/yang-lsp.git' - url = 'git@github.com:theia-ide/yang-lsp.git' + connection = 'scm:git:git@github.com:TypeFox/yang-lsp.git' + developerConnection = 'scm:git:git@github.com:TypeFox/yang-lsp.git' + url = 'git@github.com:TypeFox/yang-lsp.git' } licenses { license { diff --git a/yang-lsp/release.md b/yang-lsp/release.md index 38cc4e8b..e68fdb51 100644 --- a/yang-lsp/release.md +++ b/yang-lsp/release.md @@ -3,9 +3,9 @@ - Create local branch e.g. `release-0.5.0` - Update the version to `version = '0.5.0'` in `yang-lsp/gradle/versions.gradle` and commit - Create a tag named `v0.5.0` and push tags to remote -- Go to [Releases](https://github.com/theia-ide/yang-lsp/releases) GitHub page and initiate a new release by clicking __Draft a new release__ +- Go to [Releases](https://github.com/TypeFox/yang-lsp/releases) GitHub page and initiate a new release by clicking __Draft a new release__ - Select `v0.5.0` tag from the __Choose a tag__ dropdown, fill out the form and click __Publish release__ -- A [Release](https://github.com/theia-ide/yang-lsp/actions/workflows/release.yml) GH Action will start building and publishing the maven artifacts to the OSS staging repository +- A [Release](https://github.com/TypeFox/yang-lsp/actions/workflows/release.yml) GH Action will start building and publishing the maven artifacts to the OSS staging repository - After a successful build copy build artifacts `language-server_0.5.0.zip` and `yang-language-server_diagram-extension_0.5.0.zip` to the release assets. You can edit an existing release by clicking the __Edit__ icon and upload files using drag and drop. - Finally go to [OSS Staging Repository](https://oss.sonatype.org/#stagingRepositories) and __Close__ -> __Release__ the staging yang repositories - Check the released version inside the [maven repo](https://repo1.maven.org/maven2/io/typefox/yang/) \ No newline at end of file