ci: pull image before running tools for viz
This commit is contained in:
parent
917d1a5c27
commit
555244b7bf
2 changed files with 8 additions and 4 deletions
6
.github/workflows/test.yaml
vendored
6
.github/workflows/test.yaml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/update.yaml
vendored
6
.github/workflows/update.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue