Skip to content

Commit 87772e5

Browse files
committed
Fix variable names
1 parent 1fa89c8 commit 87772e5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish-to-test-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434

3535
- name: Verify version consistency
3636
run: |
37-
if [[ "$FPM_VERSION" != "$TAG_VERSION" ]]; then
38-
echo "❌ Version mismatch: fpm.toml ($FPM_VERSION) does not match GitHub tag ($TAG_VERSION)"
37+
if [[ "$RAFFLE_FPM_VERSION" != "$TAG_VERSION" ]]; then
38+
echo "❌ Version mismatch: fpm.toml ($RAFFLE_FPM_VERSION) does not match GitHub tag ($TAG_VERSION)"
3939
exit 1
4040
fi
41-
if [[ "$FORTRAN_VERSION" != "$TAG_VERSION" ]]; then
42-
echo "❌ Version mismatch: mod_io_utils.F90 ($FORTRAN_VERSION) does not match GitHub tag ($TAG_VERSION)"
41+
if [[ "$RAFFLE_FORTRAN_VERSION" != "$TAG_VERSION" ]]; then
42+
echo "❌ Version mismatch: mod_io_utils.F90 ($RAFFLE_FORTRAN_VERSION) does not match GitHub tag ($TAG_VERSION)"
4343
exit 1
4444
fi
4545
echo "✅ Version numbers match!"

0 commit comments

Comments
 (0)