Skip to content

Commit 07e9810

Browse files
authored
Merge pull request #27 from NFIBrokerage/make-sure-tasks-are-loaded
Make sure tasks are loaded
2 parents 24f4478 + f3e25da commit 07e9810

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,32 @@ The format is based on [Keep a
66
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9-
## 0.7.4 - 2023-08-09
9+
## 0.8.3 - 2024-09-25
10+
11+
### Fixed
12+
13+
- Makes sure all harness archive tasks are loaded and available to use
14+
15+
## 0.8.2 - 2024-03-18
16+
17+
### Changed
18+
19+
- Updated `actions/checkout@` from `v3` to `v4` in GH actions
20+
- Updated `actions/cache@` from `v3` to `v4` in GH actions
21+
- Updated `NFIBrokerage/create-release@` from `v3` to `v4` in GH actions
22+
23+
## 0.8.1 - 2023-08-24
24+
25+
### Changed
26+
27+
- Updated `actions/checkout@` from `v1` to `v3` in GH actions
28+
- Updated `actions/cache@` from `v1` to `v3` in GH actions
29+
- Updated `NFIBrokerage/create-release@` from `v2` to `v3` in GH actions
30+
- Change `release_name` to `name` field in `NFIBrokerage/create-release@v3`
31+
action in GH actions
32+
- Fixed credo warnings
33+
34+
## 0.8.0 - 2023-08-09
1035

1136
### Fixed
1237

lib/harness/manifest.ex

+4-1
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,16 @@ defmodule Harness.Manifest do
7878
:ok = ProjectStack.push(__MODULE__, config, Path.expand(path))
7979

8080
deps = Mix.Dep.cached()
81+
archive_path = archive_path()
8182

8283
:ok =
8384
deps
8485
|> Enum.flat_map(&Mix.Dep.load_paths/1)
85-
|> (&[archive_path() | &1]).()
8686
|> Enum.each(&Code.append_path/1)
8787

88+
Code.append_path(archive_path)
89+
Mix.Task.load_tasks([archive_path])
90+
8891
deps
8992
|> Enum.map(fn %Mix.Dep{app: app} -> app end)
9093
|> Enum.each(&Application.ensure_started/1)

0 commit comments

Comments
 (0)