Skip to content

Commit

Permalink
always need a username/password
Browse files Browse the repository at this point in the history
  • Loading branch information
aclegg3 committed Nov 21, 2024
1 parent 8f46c78 commit ca25eb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/install_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,14 +294,14 @@ jobs:
run: |-
echo "NIGHTLY=''" >> $GITHUB_ENV
echo "CI_TEST='true'" >> $GITHUB_ENV
echo "CONDA_USERNAME=$AIHABITAT_CONDA_USERNAME" >> $GITHUB_ENV
echo "CONDA_PWD=$AIHABITAT_CONDA_PWD" >> $GITHUB_ENV
if [[ ${{ github.event_name }} == 'push' ]]; then
if [[ ${GITHUB_REF} == refs/heads/* ]]; then
echo "trigger: a push to main branch"
elif [[ ${GITHUB_REF} == refs/tags/* ]]; then
echo "trigger: a version tag push"
echo "CI_TEST='false'" >> $GITHUB_ENV
echo "CONDA_USERNAME=$AIHABITAT_CONDA_USERNAME" >> $GITHUB_ENV
echo "CONDA_PWD=$AIHABITAT_CONDA_PWD" >> $GITHUB_ENV
fi
elif [[ ${{ github.event_name }} == 'schedule' ]]; then
echo "trigger: a nightly build"
Expand Down

0 comments on commit ca25eb1

Please sign in to comment.