Skip to content
This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
/ pkg_tar Public archive

Elixir Release - tar.gz Packager

License

Notifications You must be signed in to change notification settings

jnylen/pkg_tar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PkgTar

pkg_tar is a .tar file packager for Mix Release.

Notice: In all honestly this shouldn't really be needed, as tar:ing a release is easy in one function.

Installation

The package can be installed by adding pkg_tar to your list of dependencies in mix.exs:

def deps do
  [
    {:pkg_tar, "~> 0.1.1"}
  ]
end

The docs can be found at https://hexdocs.pm/pkg_tar.

Usage

Inside of your mix.exs file add to the steps inside of releases:

steps: [:assemble, &PkgTar.create/1],