Skip to content

Commit

Permalink
create the Updates Website
Browse files Browse the repository at this point in the history
  • Loading branch information
thefourcraft committed Apr 26, 2024
1 parent 33b994e commit 49032aa
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/changelog-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Deploy to GitHub Pages

on:
push:
branches: ["Production"]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
install:
runs-on: ubuntu-latest
name: 📦 Install
outputs:
sha: ${{ steps.checkout.outputs.commit_sha }}
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4

deploy:
needs: install
name: 🚀 Deploy
environment:
name: Workway Updates
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './src'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
8 changes: 8 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# WorkWay עדכון V1.0.1
## מערכת הצ׳אט
- גרסת 2.5.6 מעדכנת רק את Freemius SDK ל-2.7.2 מכיוון שדווח כי ל-2.7.1 יש כמה בעיות במערכת הרישוי
- תוקן עיצוב שורות חדשות בעת עריכת הודעות
- תיקנו בעיות אפשריות עם מיני צ'אטים שפותחים שיחה שגויה
- אפקט הניעור הוסר בעת פתיחת מיני צ'אטים כפולים כדי למנוע טשטוש טקסט
- אופטימיזציה של בקשות טעינה ראשונית כדי למנוע בקשות מיותרות בטעינה ראשונה
- תיקוני באגים ושיפורים קלים אחרים
18 changes: 18 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Changelog</title>
</head>
<body>
<div id="content"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
fetch('../CHANGELOG.md')
.then(response => response.text())
.then(text => document.getElementById('content').innerHTML = marked(text))
.catch(error => console.error('Error loading the CHANGELOG.md:', error));
</script>
</body>
</html>

0 comments on commit 49032aa

Please sign in to comment.