Skip to content

Commit 6531fd4

Browse files
committed
Adds release.yml
1 parent 104e68b commit 6531fd4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/release.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- v*.*.*
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-22.04
11+
steps:
12+
- name: Check out
13+
uses: actions/checkout@v3
14+
15+
- name: Publish to Hex.pm
16+
uses: erlangpack/github-action@v3
17+
env:
18+
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

0 commit comments

Comments
 (0)