From 25be625b261b7aaabb08d1e1031b559d9e2a2fb1 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 30 Oct 2024 11:37:55 -0500 Subject: ci: only run on vX.Y.Z tags Signed-off-by: Matt Strapp --- .github/workflows/beam.yml | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to '.github/workflows/beam.yml') 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 -- cgit v1.2.3