Skip to content

Commit

Permalink
update docs config
Browse files Browse the repository at this point in the history
  • Loading branch information
petermueller committed Mar 25, 2024
1 parent 7050816 commit 9aaecf2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Waffle GCS

[![Hex.pm Version](https://img.shields.io/hexpm/v/waffle_gcs)](https://hex.pm/packages/waffle_gcs)
[![waffle_gcs documentation](http://img.shields.io/badge/hexdocs-documentation-brightgreen.svg)](https://hexdocs.pm/waffle_gcs)
[![Build Status](https://github.com/elixir-waffle/waffle_gcs/actions/workflows/elixir.yml/badge.svg?branch=main)](https://github.com/elixir-waffle/waffle_gcs/actions)

Google Cloud Storage for Waffle
Expand Down
15 changes: 13 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ defmodule Waffle.Storage.Google.CloudStorage.MixProject do
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
docs: docs(),
package: package(),
source_url: "https://github.com/elixir-waffle/waffle_gcs",
homepage_url: "https://github.com/elixir-waffle/waffle_gcs"
Expand All @@ -26,9 +27,19 @@ defmodule Waffle.Storage.Google.CloudStorage.MixProject do

defp package do
[
files: ~w(config/config.exs lib LICENSE mix.exs README.md),
files: ~w(config/config.exs lib LICENSE mix.exs README.md CHANGELOG.md),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/elixir-waffle/waffle_gcs"}
links: %{
"GitHub" => "https://github.com/elixir-waffle/waffle_gcs",
"CHANGELOG" => "https://github.com/elixir-waffle/waffle_gcs/blob/main/CHANGELOG"
}
]
end

defp docs do
[
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
]
end

Expand Down

0 comments on commit 9aaecf2

Please sign in to comment.