Skip to content

Commit 3031d18

Browse files
committed
[temp] automate auth-spa
1 parent cade746 commit 3031d18

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/asgardeo-auth-spa-version-updater.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,16 @@ jobs:
5858
existing_version=$(grep -oP 'auth-spa-\K[0-9]+\.[0-9]+\.[0-9]+' apps/console/src/public/auth-spa-3.0.1.min.js)
5959
latest_release=$(curl -s https://api.github.com/repos/asgardeo/asgardeo-auth-spa-sdk/releases/latest | jq -r '.tag_name')
6060
61-
if [ "$existing_version" == "$latest_release" ]; then
62-
echo "Versions match. Aborting further steps."
63-
exit 0
64-
fi
61+
# if [ "$existing_version" == "$latest_release" ]; then
62+
# echo "Versions match. Aborting further steps."
63+
# exit 0
64+
# fi
6565
6666
echo "EXISTING_ASGARDEO_AUTH_VERSION=${existing_version}" >> $GITHUB_ENV
6767
echo "LATEST_ASGARDEO_AUTH_VERSION=${latest_release}" >> $GITHUB_ENV
68+
69+
echo "Existing version: $existing_version"
70+
echo "Latest release: $latest_release"
6871
# - name: 🎉 Create pull request
6972
# id: create-pr
7073
# run: |

0 commit comments

Comments
 (0)