delete workflow, use github api to fetch latest dev commit

This commit is contained in:
plebeius.eth
2023-09-11 10:27:18 +02:00
parent 41723cbc3d
commit 92564b4bc6
2 changed files with 6 additions and 33 deletions
+6 -4
View File
@@ -82,11 +82,13 @@ export default function App() {
// Check for commit hash if commitRef is defined
if (commitRef.length > 0) {
const commitRes = await fetch('https://raw.githubusercontent.com/plebbit/plebchan/development/public/latest_dev_commit.txt', { cache: 'no-cache' });
const latestCommit = await commitRes.text();
const commitRes = await fetch('https://api.github.com/repos/plebbit/plebchan/commits?per_page=1&sha=development', { cache: 'no-cache' });
const commitData = await commitRes.json();
if (latestCommit.trim() !== commitRef.trim()) {
const newVersionInfo = `New dev version available, commit ${latestCommit}. Refresh the page to update.`;
const latestCommitHash = commitData[0].sha;
if (latestCommitHash.trim() !== commitRef.trim()) {
const newVersionInfo = `New dev version available, commit ${latestCommitHash}. Refresh the page to update.`;
localStorage.setItem('infoToast', newVersionInfo);
}
}