angular 21 devlopment complete (#33) (#34) #15
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: Angular deploy | |
| # Controls when the action will run. | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the master branch | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "angular/**" | |
| #pull_request: | |
| # types: | |
| # - closed | |
| # branches: | |
| # - master | |
| jobs: | |
| #if_merged: | |
| # if: github.event.pull_request.merged == true | |
| React-Deploy: | |
| name: 🎉 Angular Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🚚 Get latest code | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: 🔨 Build Project | |
| run: | | |
| cd angular | |
| yarn | |
| yarn build-prod | |
| - name: 📂 Deploy to Server | |
| uses: easingthemes/ssh-deploy@main | |
| env: | |
| SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} | |
| # ARGS: "-rltgoDzvO --delete" | |
| SOURCE: "angular/dist/" | |
| REMOTE_HOST: 82.29.156.38 | |
| REMOTE_USER: u106957989 | |
| REMOTE_PORT: "65002" | |
| TARGET: domains/codedthemes.com/public_html/demos/admin-templates/gradient-able/angular/free | |
| EXCLUDE: "/angular/node_modules/" |