Skip to content

Commit

Permalink
Update sponsor-installer.html
Browse files Browse the repository at this point in the history
  • Loading branch information
alf45tar authored Oct 5, 2024
1 parent dc5c76c commit c6f198e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sponsor-installer.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ <h1>PedalinoMini™ Installer</h1>
const sortedTags = sortVersions(tags.map(tag => tag.ref.split('/').pop()));
sortedTags.forEach(tag => {
const option = document.createElement('option');
option.value = `https://github.com/${GITHUB_REPO}/raw/${tag}/path/to/your/firmware.bin`; // Adjust the path as needed
option.value = `https://raw.githubusercontent.com/${GITHUB_REPO}/${version}/firmware/${boardKey}/${boardKey}-${version}.json`;
option.textContent = tag;
versionSelect.appendChild(option);
});
Expand Down

0 comments on commit c6f198e

Please sign in to comment.