Skip to content

Commit

Permalink
Add workflow to create Hex package on release
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilger committed Jan 27, 2024
1 parent f46b8d2 commit 2ff35f0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish Package
on:
release:
types: [published]

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

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

0 comments on commit 2ff35f0

Please sign in to comment.