ci: pull image before running tools for viz

This commit is contained in:
Jared Allard 2024-02-20 16:48:17 -08:00
parent 917d1a5c27
commit 555244b7bf
Signed by: jaredallard
SSH key fingerprint: SHA256:wyRyyv28jBYw8Yp/oABNPUYvbGd6hyZj23XVXEm5G/U
2 changed files with 8 additions and 4 deletions

View file

@ -20,8 +20,10 @@ jobs:
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Build tools
- name: Setup Environment
working-directory: .tools
run: mise run build
run: |-
mise run build
docker pull ghcr.io/jaredallard/overlay:updater
- name: Run linter
run: mise run lint

View file

@ -22,9 +22,11 @@ jobs:
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Build tools
- name: Setup Environment
working-directory: .tools
run: mise run build
run: |-
mise run build
docker pull ghcr.io/jaredallard/overlay:updater
- name: Run updater
run: mise run update
- name: Run linter