update: controller #10
This file contains hidden or 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
| name: Deployment | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["dev"] | |
| jobs: | |
| deploy: | |
| runs-on: self-hosted | |
| if: github.event_name == 'push' | |
| steps: | |
| - name: Clone Repo 🤖 | |
| uses: actions/checkout@v3 | |
| - name: Set Environment Variables 🔠 | |
| env: | |
| BACKEND_URL: ${{ secrets.BACKEND_URL }} | |
| REDISHOST: ${{ secrets.REDISHOST }} | |
| JWT_SECRET: ${{ secrets.JWT_SECRET }} | |
| run: | | |
| echo "BACKEND_URL=$BACKEND_URL" >> .env | |
| echo "REDISHOST=$REDISHOST" >> .env | |
| echo "JWT_SECRET=$JWT_SECRET" >> .env | |
| - name: Clear Cache 🫧 | |
| run: | | |
| docker stop real-time || true | |
| docker rm real-time || true | |
| docker rmi real-time-real-time:latest || true | |
| - name: Run Image ✅ | |
| run: | | |
| docker compose up -d | |
| - name: Message ✉️ | |
| uses: fjogeleit/http-request-action@v1 | |
| with: | |
| timeout: 60000 | |
| url: ${{ secrets.DISCORD_WEBHOOK }} | |
| method: "POST" | |
| customHeaders: '{"Content-Type": "application/json"}' | |
| data: '{"content": "CE PROJECT Real Time Build ✅","embeds": [{"title": "Real Time URL","description": "https://codespace-realtime.srv-demo-2.home.unixvextor.com"}]}' |