Skip to content

Commit

Permalink
Revert "master => nightly"
Browse files Browse the repository at this point in the history
This reverts commit 71376e4.
  • Loading branch information
3nids committed Nov 3, 2024
1 parent a2dcb99 commit a6d1fea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O yq && chmod +x yq
QGIS_CURRENT_LTR=$(yq .current_ltr pyqgis_conf.yml)
QGIS_CURRENT_STABLE=$(yq .current_stable pyqgis_conf.yml)
QGIS_VERSION=$(yq --exit-status .current_${{ matrix.qgis_version }} pyqgis_conf.yml)
QGIS_VERSION=${{ matrix.qgis_version }}
if [[ "${QGIS_VERSION}" != 'master' ]]; then
QGIS_VERSION=$(yq --exit-status .current_${{ matrix.qgis_version }} pyqgis_conf.yml)
fi
vars=("QGIS_VERSION" "QGIS_CURRENT_STABLE" "QGIS_CURRENT_LTR")
for var in "${vars[@]}"; do
Expand Down

0 comments on commit a6d1fea

Please sign in to comment.