-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CD workflow to publish to hex.pm (#2)
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: CD | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Elixir | ||
uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: "25" | ||
elixir-version: "1.14" | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup hex | ||
run: | | ||
mix local.hex --force | ||
mix local.rebar --force | ||
- name: Get deps | ||
run: mix deps.get | ||
- name: Get version | ||
run: | | ||
VERSION=$(grep -m1 version mix.exs | cut -d'"' -f2) | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Check version | ||
if: ${{ github.event.release.tag_name != env.VERSION }} | ||
run: | | ||
echo "Github ref tag [${{ github.event.release.tag_name }}] is different from mix.exs version [${{ env.VERSION }}]" | ||
exit 1 | ||
- name: Login to hex.pm | ||
run: mix hex.config api_key "$HEX_AUTH_KEY" | ||
env: | ||
HEX_AUTH_KEY: ${{ secrets.HEX_AUTH_KEY }} | ||
- name: Publish to hex.pm | ||
run: mix hex.publish --yes | ||
env: | ||
MIX_ENV: docs |