-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33b994e
commit 49032aa
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 יש כמה בעיות במערכת הרישוי | ||
- תוקן עיצוב שורות חדשות בעת עריכת הודעות | ||
- תיקנו בעיות אפשריות עם מיני צ'אטים שפותחים שיחה שגויה | ||
- אפקט הניעור הוסר בעת פתיחת מיני צ'אטים כפולים כדי למנוע טשטוש טקסט | ||
- אופטימיזציה של בקשות טעינה ראשונית כדי למנוע בקשות מיותרות בטעינה ראשונה | ||
- תיקוני באגים ושיפורים קלים אחרים |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |