Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 24 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Git
.git
.gitignore

# IDE
.vs
.vscode
.idea
**/*.user
**/*.suo

# .NET build artifacts
**/bin
**/obj

# Test / coverage artifacts
**/TestResults
**/coverage
**/coverage.*
**/*.trx

# OS files
.DS_Store
Thumbs.db
3 changes: 2 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ Link any related issues:
## 🛠 Changes
- [ ] New feature
- [ ] Bug fix
- [ ] Refactoring - Improvement
- [ ] Documentation
- [ ] Refactoring
- [ ] Samples
- [ ] Breaking change

---
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,17 @@ jobs:
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
set -e

cd ~/apps/UltimateAuth
git pull origin master

git fetch origin master
git reset --hard origin/master

echo "Deploying commit:"
git log -1 --oneline

cd .docker

docker compose down
docker compose up -d --build

Loading
Loading