Update test frontend #16
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: ♻️ Update server (public_html) | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
web-deploy: | |
name: 🎉 Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v4 | |
- name: 🛠️ Build Angular project | |
run: | | |
npm install -g @angular/cli | |
npm ci | |
ng build --output-path docs --base-href ${{ secrets.BASE_HREF }} | |
- name: 📝 Create .htaccess | |
run: | | |
echo "ErrorDocument 404 /index.html" > docs/browser/.htaccess | |
- name: 📂 Sync files | |
uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.SERVER }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
port: ${{ secrets.PORT }} | |
local-dir: docs/browser/ | |
server-dir: public_html/ |