Skip to content

Commit

Permalink
Added workflow to push release to hex.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
mmzeeman committed Jul 9, 2021
1 parent c0bf651 commit 9698042
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/hex-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Hex Publish

on:
push:
tags:
- '*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2

- name: Publish to Hex.pm
uses: erlangpack/github-action@v1
env:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

0 comments on commit 9698042

Please sign in to comment.