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
name: Build and Deploy MKJ TEST | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
web-deploy: | |
name: π Deploy Website MKJ Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Get Latest Code | |
uses: actions/checkout@v3 | |
- name: π¦ Install Packages | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Update environment file | |
run: | | |
sed -i 's+'production'+${{secrets.TEST_PRODUCTION}}+g' src/environments/environment.prod.ts | |
sed -i "s+'publictest'+${{secrets.TEST_PUBLICTEST}}+g" src/environments/environment.prod.ts | |
sed -i "s+'appTitle'+${{secrets.TEST_APPTITLE}}+g" src/environments/environment.prod.ts | |
sed -i "s+'apiUrl'+${{secrets.TEST_APIURL}}+g" src/environments/environment.prod.ts | |
sed -i "s+'wsHost'+${{secrets.TEST_WSHOST}}+g" src/environments/environment.prod.ts | |
sed -i "s+'wsAppKey'+${{secrets.TEST_WSAPPKEY}}+g" src/environments/environment.prod.ts | |
- name: Install dependencies | |
run: npm ci | |
- name: π¨ Build | |
run: npm run build-test | |
- name: π Sync Files | |
uses: SamKirkland/web-deploy@v1 | |
with: | |
target-server: ${{ secrets.FTP_SERVER }} | |
remote-user: ${{ secrets.SSH_USERNAME_MKJ }} | |
private-ssh-key: ${{ secrets.SSH_KEY_MKJ }} | |
source-path: ./dist/mkjAPP/browser/ | |
destination-path: ~/test.mk-jainzen.at/ |