diff --git a/.drone.yml b/.drone.yml index 8d30d64..fcaf4da 100644 --- a/.drone.yml +++ b/.drone.yml @@ -49,7 +49,7 @@ steps: - .rebar3 - name: install dependencies - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest pull: "always" environment: MIX_ENV: test @@ -121,7 +121,7 @@ steps: - .rebar3 - name: mix compile - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -134,7 +134,7 @@ steps: - asdf mix compile --warnings-as-errors - name: mix test - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -147,7 +147,7 @@ steps: - asdf mix test - name: mix credo - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -160,7 +160,7 @@ steps: - asdf mix credo --strict - name: mix hex.audit - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -173,7 +173,7 @@ steps: - asdf mix hex.audit - name: mix format - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -186,7 +186,7 @@ steps: - asdf mix format --check-formatted - name: mix deps.unlock - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -199,7 +199,7 @@ steps: - asdf mix deps.unlock --check-unused - name: mix doctor - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -212,7 +212,7 @@ steps: - asdf mix doctor --full - name: mix git_ops.check_message - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest environment: MIX_ENV: test HEX_HOME: /drone/src/.hex @@ -226,7 +226,7 @@ steps: - asdf mix git_ops.check_message .last_commit_message - name: mix git_ops.release - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest when: branch: - main @@ -266,7 +266,7 @@ steps: - fi - name: build artifacts - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest when: event: - tag @@ -313,7 +313,7 @@ steps: settings: api_key: from_secret: DRONE_TOKEN - base_url: https://code.harton.nz + base_url: https://harton.dev files: artifacts/*.tar.gz checksum: sha256 title: tag_subject @@ -344,7 +344,7 @@ steps: - mc mirror --overwrite doc/ store/docs.harton.nz/$${DRONE_REPO} - name: hex release - image: code.harton.nz/james/asdf_container:latest + image: harton.dev/james/asdf_container:latest when: event: - tag diff --git a/README.md b/README.md index 1692157..38ffd4c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ a 2D rendering library implemented 100% in Elixir with no dependencies. ## Accessing on GitHub -This repository is [mirrored to GitHub](https://github.com/jimsynz/vivid_png.ex) from it's home on [code.harton.nz](https://code.harton.nz/james/vivid_png). Feel free to raise issues, etc, on GitHub. +This repository is [mirrored to GitHub](https://github.com/jimsynz/vivid_png.ex) from it's home on [harton.dev](https://harton.dev/james/vivid_png). Feel free to raise issues, etc, on GitHub. ## Installation @@ -50,4 +50,4 @@ frame |> PNG.to_png("example.png") ``` -![example.png](https://code.harton.nz/james/vivid_png/raw/branch/main/example.png) +![example.png](https://harton.dev/james/vivid_png/raw/branch/main/example.png) diff --git a/config/config.exs b/config/config.exs index e6cb020..dc6c4d9 100644 --- a/config/config.exs +++ b/config/config.exs @@ -3,7 +3,7 @@ import Config config :git_ops, mix_project: Mix.Project.get!(), changelog_file: "CHANGELOG.md", - repository_url: "https://code.harton.nz/james/vivid_png", + repository_url: "https://harton.dev/james/vivid_png", manage_mix_version?: true, manage_readme_version: "README.md", version_tag_prefix: "v" diff --git a/mix.exs b/mix.exs index 9ef18ac..b48b197 100644 --- a/mix.exs +++ b/mix.exs @@ -32,7 +32,7 @@ defmodule Vivid.PNG.Mixfile do maintainers: ["James Harton "], licenses: ["MIT"], links: %{ - "Source" => "https://code.harton.nz/james/vivid_png" + "Source" => "https://harton.dev/james/vivid_png" } ] end