Skip to content
Merged

test #12

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e1df250
made changes
Luna115-onCode Jun 7, 2025
fd48d86
modified package dependencies
Luna115-onCode Jun 7, 2025
937d3e2
Updated Angular version and Added PWA capability
Luna115-onCode Jun 7, 2025
ab8fd3b
Created workflow for auto-deploy to GH pages
Luna115-onCode Jun 7, 2025
850ac9e
Fixed wrong pwa icons path
Luna115-onCode Jun 7, 2025
a43545a
Fixed wrong favicon path
Luna115-onCode Jun 7, 2025
4e72e6c
fixed deleting other envs folders
Luna115-onCode Jun 7, 2025
eb8b69e
Merge branch 'testing' into development
Luna115-onCode Jun 7, 2025
94e7f06
fixed deleting other envs folders
Luna115-onCode Jun 7, 2025
7b03556
fixed deleting other envs folders
Luna115-onCode Jun 7, 2025
89695b5
test
Luna115-onCode Jun 7, 2025
2874734
trying to fix development and test envs unaccesible and removed unnec…
Luna115-onCode Jun 7, 2025
a4c519a
trying to fix development and test envs unaccesible and removed unnec…
Luna115-onCode Jun 7, 2025
f86cb08
fixed deleting other envs folders
Luna115-onCode Jun 7, 2025
01eb62b
deleted loop created on dev and test routes
Luna115-onCode Jun 7, 2025
01a8b7d
Merge branch 'testing' into development
Luna115-onCode Jun 7, 2025
1d211c3
fixed?
Luna115-onCode Jun 7, 2025
6701767
Merge branch 'testing' into development
Luna115-onCode Jun 7, 2025
28240fd
Fixed prod deployment
Luna115-onCode Jun 7, 2025
6aaed4b
Merge branch 'testing' into development
Luna115-onCode Jun 7, 2025
110562c
merge
Luna115-onCode Jun 7, 2025
0e7348a
don't develop from mobile
Luna115-onCode Jun 7, 2025
da3b965
Merge branch 'testing' into development
Luna115-onCode Jun 7, 2025
a139e37
Fixing fail status when no changes to commit
Luna115-onCode Jun 7, 2025
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
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,20 @@ jobs:
cp -r dist/cheems-angular/browser/* "$target_dir"
cp README.md .gitignore "$target_dir"
if [ "$build_env" = "production" ]; then
cp .pwa/inde.html "deploy-folder/"
cp .pwa/index.html "deploy-folder/"
cp README.md .gitignore "deploy-folder/"
fi

- name: Commit and Deploy to GitHub Pages
working-directory: deploy-folder
run: |
git add .
git commit -m "Deploy #${{ github.run_number }} from ${{ github.ref }} branch - ${{ steps.set-env.outputs.build_env }}"
GIT_SSH_COMMAND="ssh -i ~/.ssh/deploy_key -o UserKnownHostsFile=~/.ssh/known_hosts" git push git@github.com:${{ github.repository }} gh-pages --force
if git diff --cached --quiet; then
echo "No changes to commit. Skipping deployment."
else
git commit -m "Deploy #${{ github.run_number }} from ${{ github.ref }} branch - ${{ steps.set-env.outputs.build_env }}"
GIT_SSH_COMMAND="ssh -i ~/.ssh/deploy_key -o UserKnownHostsFile=~/.ssh/known_hosts" git push git@github.com:${{ github.repository }} gh-pages --force
fi

- name: Clean Up Worktree
run: git worktree remove deploy-folder --force
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link rel="manifest" href="manifest.webmanifest">
</head>
<body>
<body>
<app-root></app-root>
<noscript>Please enable JavaScript to continue using this application.</noscript>
</body>
Expand Down
Loading