Skip to content

Commit

Permalink
Explicit env definition
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-riggs committed Aug 15, 2024
1 parent afcdb0e commit 6e14ddf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
mv -v dist/!(pypi) dist/pypi
git archive HEAD | gzip > dist/repo-source.tar.gz
ls -laR dist
- name: Download ISPyB DB schema v${{ DATABASE_SCHEMA }} for tests
run: wget -t 3 --waitretry=20 https://github.com/DiamondLightSource/ispyb-database/releases/download/v${{ DATABASE_SCHEMA }}/ispyb-database-$${{ DATABASE_SCHEMA }}.tar.gz -O dist/ispyb-database.tar.gz
- name: Download ISPyB DB schema v${{ env.DATABASE_SCHEMA }} for tests
run: wget -t 3 --waitretry=20 https://github.com/DiamondLightSource/ispyb-database/releases/download/v${{ env.DATABASE_SCHEMA }}/ispyb-database-$${{ DATABASE_SCHEMA }}.tar.gz -O dist/ispyb-database.tar.gz
- name: Store artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
steps:
- uses: ./.github/workflows/update-orm.yml
with:
DATABASE_SCHEMA: ${{ DATABASE_SCHEMA }}
DATABASE_SCHEMA: ${{ env.DATABASE_SCHEMA }}

publish-to-pypi:
name: >-
Expand Down

0 comments on commit 6e14ddf

Please sign in to comment.