From 61597bafd46b7433c26ee3448a8a7e35f6c0a804 Mon Sep 17 00:00:00 2001 From: Guillaumebeuzeboc Date: Fri, 15 Nov 2024 11:43:03 +0100 Subject: [PATCH] fix: organization migration --- .github/workflows/rock-release-dev.yaml | 2 +- CONTRIBUTING.md | 2 +- README.md | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rock-release-dev.yaml b/.github/workflows/rock-release-dev.yaml index cb61dc3..09d77b6 100644 --- a/.github/workflows/rock-release-dev.yaml +++ b/.github/workflows/rock-release-dev.yaml @@ -48,7 +48,7 @@ jobs: TAG=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} TAG=$(echo $TAG | sed "s|\/|\_|") fi - sudo skopeo --insecure-policy copy oci-archive:$(realpath ${{ steps.rockcraft.outputs.rock }}) docker://ghcr.io/ubuntu-robotics/cos-registration-server:$TAG --dest-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" + sudo skopeo --insecure-policy copy oci-archive:$(realpath ${{ steps.rockcraft.outputs.rock }}) docker://ghcr.io/canonical/cos-registration-server:$TAG --dest-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" - name: Generate digest run: | digest=$(skopeo inspect oci-archive:$(realpath ${{ steps.rockcraft.outputs.rock }}) --format '{{.Digest}}') diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 01b44c1..cab0632 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ This instructions are for linux base systems. (Linux, MacOS, BSD, etc.) - On github interface click on `Fork` button. - Clone your fork of this repo. `git clone git@github.com:YOUR_GIT_USERNAME/cos-registration-server.git` - Enter the directory `cd cos-registration-server` -- Add upstream repo `git remote add upstream https://github.com/ubuntu-robotics/cos-registration-server` +- Add upstream repo `git remote add upstream https://github.com/canonical/cos-registration-server` ## Setting up your own virtual environment diff --git a/README.md b/README.md index bcd9f11..c51c0eb 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ its informations. A user can also visualize the registered devices as well as discovering customized device applications. -[![codecov](https://codecov.io/gh/ubuntu-robotics/cos-registration-server/branch/main/graph/badge.svg?token=cos-registration-server_token_here)](https://codecov.io/gh/ubuntu-robotics/cos-registration-server) -[![CI](https://github.com/ubuntu-robotics/cos-registration-server/actions/workflows/main.yml/badge.svg)](https://github.com/ubuntu-robotics/cos-registration-server/actions/workflows/main.yml) +[![codecov](https://codecov.io/gh/canonical/cos-registration-server/branch/main/graph/badge.svg?token=cos-registration-server_token_here)](https://codecov.io/gh/canonical/cos-registration-server) +[![CI](https://github.com/canonical/cos-registration-server/actions/workflows/main.yml/badge.svg)](https://github.com/canonical/cos-registration-server/actions/workflows/main.yml) ## Features diff --git a/setup.py b/setup.py index 52685ae..53cc71e 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def read_requirements(path:str) -> List[str]: name="cos_registration_server", version=read("cos_registration_server/cos_registration_server", "VERSION"), description="Awesome cos_registration_server created by ubuntu-robotics", - url="https://github.com/ubuntu-robotics/cos-registration-server/", + url="https://github.com/canonical/cos-registration-server/", long_description=read("README.md"), long_description_content_type="text/markdown", author="ubuntu-robotics",