Skip to content

Commit

Permalink
feat: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dennyabrain committed Aug 3, 2024
1 parent c2f40e7 commit 271c67f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: New Release
on:
push:
branches:
- main

jobs:
init:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "26.0"
elixir-version: "1.15.7"
- run: mix deps.get
- run: mix test
- run: HEX_API_KEY=${{secrets.HEX_API_KEY}} mix hex.publish --yes

0 comments on commit 271c67f

Please sign in to comment.