diff --git a/README.md b/README.md index 2191e21..64d5c53 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ The CI-config in `lib/gitlab-ci.yml` can be used in your project by including th ```yaml include: - - project: 'fginfo/pad-archiver' - file: 'lib/gitlab-ci.yml' + - https://raw.githubusercontent.com/dadada/pad-archiver/main/lib/gitlab-ci.yml ``` -The project that includes the CI configuration has to provide the environment variable `CI_ACCESS_TOKEN`. The variable must contain a project access token that can push commits to your project. +The project that includes the CI configuration has to provide the environment variable `CI_ACCESS_TOKEN`. +The variable must contain a project access token that can push commits to your project. diff --git a/go.mod b/go.mod index b0e578f..ba0255e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.fginfo.tu-bs.de/fginfo/pad-archiver +module github.com/dadada/pad-archiver go 1.19 diff --git a/lib/gitlab-ci.yml b/lib/gitlab-ci.yml index a152635..2913f2f 100644 --- a/lib/gitlab-ci.yml +++ b/lib/gitlab-ci.yml @@ -2,7 +2,7 @@ stages: - update update: - image: git.fginfo.tu-bs.de:5050/fginfo/pad-archiver:main + image: dadada/pad-archiver tags: - docker stage: update diff --git a/nix/default.nix b/nix/default.nix index 4d7589e..9edd34e 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -6,8 +6,8 @@ buildGoModule { vendorSha256 = "sha256-vBni3j3o0P13PJg/Ab1ux9zSVr05Iha/sb8dVTX4G0g="; meta = with lib; { description = "Archives Etherpads with git"; - homepage = "https://git.fginfo.tu-bs.de/fginfo/pad-archiver"; + homepage = "https://github.com/dadada/pad-archiver"; license = licenses.mit; - maintainers = [ "y0067212" ]; + maintainers = [ "dadada" ]; }; }