Skip to content

SecretKey without S2K specifier #5

SecretKey without S2K specifier

SecretKey without S2K specifier #5

Workflow file for this run

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 | awk '{print "v" $0}')
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