We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bb9207 commit 4acb2edCopy full SHA for 4acb2ed
.github/workflows/deploy-branches.yml
@@ -16,14 +16,17 @@ jobs:
16
path: source
17
- name: Add name of current branch to environment as BRANCH_NAME
18
uses: nelonoel/[email protected]
19
- - name: Clear opam cache
20
- run: rm -rf /home/runner/.opam/
21
- name: Retrieve build environment if cached # STEP 2
22
id: opam-cache
23
uses: actions/cache@v4
24
with:
25
path: '/home/runner/.opam/'
26
key: ${{ runner.os }}-modules-${{ hashFiles('./source/opam.export') }}
+ - name: Add opam repository archive
+ run: |
27
+ eval $(opam env)
28
+ export OPAMYES=1
29
+ opam repo add archive git+https://github.com/ocaml/opam-repository-archive
30
- name: Install dependencies and build tylr # STEP 3
31
run: |
32
sudo apt --assume-yes install opam
0 commit comments