Skip to content

Commit

Permalink
Fix duplicate definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruhlmann committed Mar 25, 2024
1 parent d0a5084 commit 076f460
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
submodules: recursive
lfs: true

- name: Setup OCaml
- name: Setup ocaml
uses: avsm/setup-ocaml@v2
with:
ocaml-compiler: '4.14.0'
Expand All @@ -26,22 +26,25 @@ jobs:
opam install ocamlformat
eval $(opam env)
- name: Lint, Test, and Build
- name: Lint, test, and build
run: |
make lint
make test
make
- name: Deploy Documentation
- name: Docker login
uses: azure/docker-login@v1
with:
login-server: cr.kruhlmann.dev
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}
if: github.ref == 'refs/heads/master'

- name: Publish documentation
run: |
make doc
docker build -t cr.kruhlmann.dev/aoecenter/docs/relic-sdk:latest -f doc/Dockerfile .
docker push cr.kruhlmann.dev/aoecenter/docs/relic-sdk
if: github.ref == 'refs/heads/master'


0 comments on commit 076f460

Please sign in to comment.