Skip to content

Commit

Permalink
test opposite
Browse files Browse the repository at this point in the history
  • Loading branch information
rtobar committed Nov 24, 2023
1 parent a9244d2 commit 85cb550
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
shell: python
id: set-matrix
env:
ARCHS_LINUX: ${{ startsWith(github.event.ref, 'refs/tags/v') && env.ARCHS_LINUX_ON_TAGS || env.ARCHS_LINUX_BASE }}
ARCHS_MACOS: ${{ startsWith(github.event.ref, 'refs/tags/v') && env.ARCHS_MACOS_ON_TAGS || env.ARCHS_MACOS_BASE }}
ARCHS_WINDOWS: ${{ startsWith(github.event.ref, 'refs/tags/v') && env.ARCHS_WINDOWS_ON_TAGS || env.ARCHS_WINDOWS_BASE }}
ARCHS_LINUX: ${{ ! startsWith(github.event.ref, 'refs/tags/v') && env.ARCHS_LINUX_ON_TAGS || env.ARCHS_LINUX_BASE }}
ARCHS_MACOS: ${{ ! startsWith(github.event.ref, 'refs/tags/v') && env.ARCHS_MACOS_ON_TAGS || env.ARCHS_MACOS_BASE }}
ARCHS_WINDOWS: ${{ ! startsWith(github.event.ref, 'refs/tags/v') && env.ARCHS_WINDOWS_ON_TAGS || env.ARCHS_WINDOWS_BASE }}
run: |
import json
import os
Expand Down

0 comments on commit 85cb550

Please sign in to comment.