Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #291 from meilisearch/patch-ci-env
Browse files Browse the repository at this point in the history
Fix github env variable
  • Loading branch information
alallema authored Oct 6, 2022
2 parents 5a7d408 + 316d49c commit 8eb5a92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
- name: Set image name as env variable
run: echo "IMAGE_NAME=meilisearch_digitalocean_ci_test_$(date +'%d-%m-%Y-%H-%M-%S')" >> $GITHUB_ENV
- name: Build image
run: python3 tools/build_image.py $IMAGE_NAME --no-analytics
run: python3 tools/build_image.py ${{ env.IMAGE_NAME }} --no-analytics
- name: Test image
run: python3 tools/test_image.py $IMAGE_NAME
run: python3 tools/test_image.py ${{ env.IMAGE_NAME }}
- name: Clean image
if: ${{ always() }}
run: python3 tools/destroy_image.py $IMAGE_NAME
run: python3 tools/destroy_image.py ${{ env.IMAGE_NAME }}

pylint:
name: pylint
Expand Down

0 comments on commit 8eb5a92

Please sign in to comment.