aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/beam.yml
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-10-30 11:37:55 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-10-30 11:37:55 -0500
commit25be625b261b7aaabb08d1e1031b559d9e2a2fb1 (patch)
treebbe3b6d4757aa0efd4e180b2377d613dc27e333d /.github/workflows/beam.yml
parentOops (diff)
downloadlocusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.tar
locusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.tar.gz
locusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.tar.bz2
locusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.tar.lz
locusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.tar.xz
locusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.tar.zst
locusts-25be625b261b7aaabb08d1e1031b559d9e2a2fb1.zip
ci: only run on vX.Y.Z tags
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-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