Skip to content

Commit

Permalink
ci(rtd): fix sha detection for manual runs (modflowpy#2259)
Browse files Browse the repository at this point in the history
Followup to modflowpy#2258
  • Loading branch information
wpbonelli authored Jul 4, 2024
1 parent 278efbf commit 19ddf6b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/rtd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
ref: ${{ steps.set_ref.outputs.ref }}
sha: ${{ steps.set_sha.outputs.sha }}
steps:

- name: Set ref
id: set_ref
run: |
Expand All @@ -36,6 +37,12 @@ jobs:
echo "using current ref $ref"
fi
echo "ref=$ref" >> $GITHUB_OUTPUT
- name: Checkout flopy repo
uses: actions/checkout@v4
with:
ref: ${{ steps.set_ref.outputs.ref }}

- name: Set sha
id: set_sha
run: |
Expand All @@ -45,6 +52,7 @@ jobs:
sha="${{ github.sha }}"
fi
echo "sha=$sha" >> $GITHUB_OUTPUT
rtd_build:
name: Prepare and test notebooks
needs: set_options
Expand Down

0 comments on commit 19ddf6b

Please sign in to comment.