Skip to content

Commit

Permalink
CI: deploy builds only on Linux
Browse files Browse the repository at this point in the history
We don't want the multiple CI nodes to clash.
ctrueden committed Sep 26, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 10c3caa commit 4f1fb9c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/setup.sh
Original file line number Diff line number Diff line change
@@ -5,3 +5,10 @@ sh ci-setup-github-actions.sh
# Install latest development version of appose-python.
echo "==> Installing appose-python..."
python -m pip install git+https://github.com/apposed/appose-python.git#egg=appose

# Let the Linux build handle artifact deployment.
if [ "$(uname)" != Linux ]
then
echo "No deploy -- non-Linux build"
echo "NO_DEPLOY=1" >> $GITHUB_ENV
fi

0 comments on commit 4f1fb9c

Please sign in to comment.