chore: Update forgejo hostname.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
James Harton 2024-02-05 15:40:53 +13:00
parent 8b42867873
commit a36c3e9395
5 changed files with 17 additions and 17 deletions

View file

@ -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 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
@ -213,7 +213,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
@ -252,7 +252,7 @@ steps:
- fi
- name: build artifacts
image: code.harton.nz/james/asdf_container:latest
image: harton.dev/james/asdf_container:latest
when:
event:
- tag
@ -298,7 +298,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
@ -329,7 +329,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

View file

@ -5,7 +5,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.1.2](https://code.harton.nz/james/lex_luthor/compare/v0.1.2...v0.1.2) (2023-07-25)
## [v0.1.2](https://harton.dev/james/lex_luthor/compare/v0.1.2...v0.1.2) (2023-07-25)

View file

@ -32,7 +32,7 @@ If lexing fails then you will receive an `:error` tuple which a reason and posit
## Contributing
1. Fork it ( https://code.harton.nz/james/lex_luthor/fork )
1. Fork it ( https://harton.dev/james/lex_luthor/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)

View file

@ -26,7 +26,7 @@ import Config
config :git_ops,
mix_project: Mix.Project.get!(),
changelog_file: "CHANGELOG.md",
repository_url: "https://code.harton.nz/james/lex_luthor",
repository_url: "https://harton.dev/james/lex_luthor",
manage_mix_version?: true,
manage_readme_version: "README.md",
version_tag_prefix: "v"

View file

@ -10,11 +10,11 @@ defmodule LexLuthor.Mixfile do
elixir: "~> 1.11",
description:
"LexLuthor is a Lexer in Elixir (say that 10 times fast) which uses macros to generate a reusable lexers. Good times.",
source_url: "https://code.harton.nz/james/lex_luthor",
source_url: "https://harton.dev/james/lex_luthor",
package: [
maintainers: ["James Harton <james@harton.nz>"],
licenses: ["MIT"],
links: %{"Source" => "https://code.harton.nz/james/lex_luthor"}
links: %{"Source" => "https://harton.dev/james/lex_luthor"}
],
deps: deps()
]