diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 32f7be9..bfdf13f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,19 +19,3 @@ jobs: with: otp-version: ${{matrix.otp}} - run: make all dialyze tests - hex-publish: - if: github.ref_name != 'main' && github.ref_name != 'develop' - needs: build - strategy: - matrix: - otp: - - 26 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: erlef/setup-beam@v1 - with: - otp-version: ${{matrix.otp}} - - run: make hex-release-publish - env: - HEX_SECRET: ${{ secrets.HEX_SECRET }} diff --git a/Makefile b/Makefile index 4fca303..267a4d4 100644 --- a/Makefile +++ b/Makefile @@ -37,20 +37,10 @@ PLT_APPS += syntax_tools dep_any_commit = 0.3.2 -dep_any = git https://github.com/shortishly/any.git +dep_any = $(if $(DEP_LN),ln ../../any,git https://github.com/shortishly/any.git) dep_beaming = $(if $(DEP_LN),ln ../../beaming,git https://github.com/shortishly/beaming.git) -define HEX_TARBALL_EXTRA_METADATA -#{ - licenses => [<<"Apache-2">>], - links => #{ - <<"GitHub">> => <<"https://github.com/shortishly/envy">> - } -} -endef - - include $(if $(ERLANG_MK_FILENAME),$(ERLANG_MK_FILENAME),erlang.mk) app:: rebar.config diff --git a/ebin/envy.app b/ebin/envy.app index ffd2a62..6faafcd 100644 --- a/ebin/envy.app +++ b/ebin/envy.app @@ -1,7 +1,6 @@ {application, 'envy', [ {description, "wrapper prefixing os_env with application name"}, - {vsn, "0.9.0"}, - {id, "0.9.0-dirty"}, + {vsn, "0.9.1"}, {modules, ['envy','envy_gen']}, {registered, []}, {applications, [kernel,stdlib,any]},