ci: configure Github Actions #156
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: Deploy Viewer-Next | |
on: | |
push: | |
branches: | |
- dev | |
- "dev/**" | |
- "feat/**" | |
- "translation/**" | |
paths: | |
- "apps/viewer-next/**" | |
- "lib/**" | |
concurrency: | |
group: "preview-deploy-viewer-next" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@main | |
with: | |
node-version: 22 | |
- uses: pnpm/action-setup@master | |
with: | |
version: 9 | |
- name: Configure npmrc | |
run: | | |
cp common/config/rush/.npmrc.github common/config/rush/.npmrc | |
- name: Verify Change Logs | |
run: node common/scripts/install-run-rush.js change --verify | |
- name: Rush Update | |
run: node common/scripts/install-run-rush.js update | |
- name: Rush Install | |
run: node common/scripts/install-run-rush.js install | |
- name: Rush build | |
run: node common/scripts/install-run-rush.js build --to viewer-next --verbose | |
- name: Viewer rsync deploy | |
uses: easingthemes/ssh-deploy@main | |
with: | |
SSH_PRIVATE_KEY: ${{ secrets.SERVER_PASS_PRODUCTION }} | |
ARGS: "-rltgoDzvO -i --delete" | |
SOURCE: "./apps/viewer-next/.output/public/" | |
REMOTE_HOST: ${{ secrets.SERVER_HOST_PRODUCTION }} | |
REMOTE_USER: ${{ secrets.SERVER_USER_PRODUCTION }} | |
TARGET: "/var/www/viewer-next" | |
EXCLUDE: ".git*" |