Skip to content

Commit 05664f9

Browse files
committed
Leverage release candidate
1 parent 77cfa6d commit 05664f9

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/integration.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Integration
22
on: push
33
env:
44
MIX_ENV: test
5-
CLDR_BRANCH: ${{ github.ref_name }}
5+
CLDR_PATH: ${{github.workspace}}/${{github.ref_name}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}
66
permissions:
77
contents: read
88
jobs:
@@ -38,9 +38,16 @@ jobs:
3838
steps:
3939
- uses: actions/checkout@v4
4040
with:
41-
repository: elixir-cldr/${{matrix.app}}
41+
path: ${{matrix.app}}
42+
repository: ${{github.repository_owner}}/${{matrix.app}}
43+
- uses: actions/checkout@v4
44+
with:
45+
path: ${{github.ref_name}}
46+
repository: ${{github.repository}}
47+
ref: ${{github.ref_name}}
4248
- uses: erlef/setup-beam@v1
4349
with:
4450
otp-version: ${{matrix.otp}}
4551
elixir-version: ${{matrix.elixir}}
46-
- run: mix deps.get && mix deps.compile && mix compile --warnings-as-errors && mix test
52+
- run: cd ${{github.workspace}}/${{github.ref_name}} && mix hex.build -o ${{CLDR_PATH}} --unpack
53+
- run: cd ${{github.workspace}}/${{matrix.app}} && mix deps.get && mix deps.compile && mix compile --warnings-as-errors && mix test

0 commit comments

Comments
 (0)