aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/beam.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/beam.yml')
-rw-r--r--.github/workflows/beam.yml23
1 files changed, 22 insertions, 1 deletions
diff --git a/.github/workflows/beam.yml b/.github/workflows/beam.yml
index 6ca02b8..a155c5d 100644
--- a/.github/workflows/beam.yml
+++ b/.github/workflows/beam.yml
@@ -32,4 +32,25 @@ jobs:
- name: Lint
run: mix format --check-formatted
- name: Test
- run: mix test \ No newline at end of file
+ run: mix test
+ publish:
+ name: Publish to hex.pm
+ needs: build-and-test
+ # Only run on this on proper semver (vX.Y.Z) tags
+ if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: Setup the BEAM
+ uses: erlef/setup-beam@v1
+ with:
+ otp-version: latest
+ elixir-version: latest
+ gleam-version: latest
+ - name: Publish
+ run: mix hex.publish --yes
+ env:
+ HEX_API_KEY: ${{ secrets.HEX_TOKEN }} \ No newline at end of file