Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DAT-14184] Fix incorrect path #370

Merged
merged 1 commit into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:
search_dir=liquibase-mongodb/src/main/resources/www.liquibase.org/xml/ns/mongodb
filenames=`ls -1 $search_dir`
mkdir index-file
cp liquibase-mongodb/src/main/resources/www.liquibase.org/xml/ns/mongodb/index.htm index-file/
cp $search_dir/index.htm index-file/
for entry in $filenames
do
if [[ "$entry" != "liquibase-mongodb-latest.xsd" ]] && [[ "$entry" != "index.htm" ]] ;then
sed -ie "s/<\/ul>/ <li><a href=\"\/xml\/ns\/mongodb\/${entry}\">${entry}<\/a><\/li>\n<\/ul>/" index-file/index.htm
fi
done
aws s3 sync index-file s3://liquibaseorg-origin/xml/ns/liquibase-mongodb/ --only-show-errors
aws s3 sync index-file s3://liquibaseorg-origin/xml/ns/mongodb/ --only-show-errors
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ <h1>Liquibase Mongo extension XML Schema Definitions</h1>
<p>These XSD files are embedded into the Liquibase Mongo extension jar file, and don’t normally need to be downloaded from this site, but these are here for easier reference.</p>

<ul>
<li><a href="/xml/ns/mongodb/mongodb-latest.xsd">liquibase-mongodb-latest.xsd</a></li>
<li><a href="/xml/ns/mongodb/liquibase-mongodb-latest.xsd">liquibase-mongodb-latest.xsd</a></li>
<!-- Other links will be autogenerated by CI -->
</ul>