Skip to content

Commit

Permalink
Merge branch 'release/v8.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Dec 30, 2023
2 parents a3d64f4 + 7b89155 commit 513cc15
Show file tree
Hide file tree
Showing 49 changed files with 1,388 additions and 284 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ on:
push:
branches:
- develop
- feature/**

jobs:
deps:
name: Dependencies
runs-on: ubuntu-latest

container:
image: alpine:edge
image: alpine:3.17

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -55,7 +56,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: alpine:edge
image: alpine:3.17

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -99,7 +100,17 @@ jobs:
runs-on: ubuntu-latest

container:
image: alpine:edge
image: alpine:3.17

services:
minio:
image: minio/minio:edge-cicd
ports:
- 9000:9000
env:
MINIO_ACCESS_KEY: minioadmin
MINIO_SECRET_KEY: minioadmin
options: --name=minio --health-cmd "curl http://localhost:9000/minio/health/live"

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -132,3 +143,5 @@ jobs:

- name: Run Tests
run: mix test --trace --slowest 10
env:
MINIO_HOST: minio
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish

on:
push:
tags:
- v*.*.*

jobs:
publish:
name: Publish to hex
runs-on: ubuntu-latest
environment: Release
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "25"
elixir-version: "1.14.4"
- uses: cucumber/action-publish-hex@v1.0.0
with:
hex-api-key: ${{ secrets.HEX_API_KEY }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ pakman-*.tar

/tmp


/priv/plts
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
erlang 25.3.2.7
elixir 1.14.4-otp-25
18 changes: 0 additions & 18 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit 513cc15

Please sign in to comment.