Skip to content

Commit

Permalink
adds publishing on tagging to hex.pm (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: emmanuel.pinault <[email protected]>
  • Loading branch information
epinault and epinault authored Jan 12, 2024
1 parent 970a3bc commit 3d54f68
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
push:
tags:
- "*"

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

- name: Publish package to hex.pm
uses: wesleimp/action-publish-hex@v1
env:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

0 comments on commit 3d54f68

Please sign in to comment.