Skip to content

bump alpha minor

bump alpha minor #43

Workflow file for this run

name: deploy
on:
- push
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: |
ls -la
yarn install
yarn build
- name: get-npm-version
id: package-version
uses: martinbeentjes/[email protected]
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_PRIVATE_KEY }}
known_hosts: 'sandwiches'
- name: Adding Known Hosts
run: ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
# - name: check if remote file exists
# uses: appleboy/[email protected]
# with:
# host: ${{ secrets.SSH_HOST }}
# key: ${{ secrets.SSH_PRIVATE_KEY }}git
# port: ${{ secrets.SSH_PORT }}
# script: |
# if [ -f /var/www/html/${{ steps.package-version.outputs.current-version}} ]; then
# exists=yes
# else
# exists=no
# fi
# echo "EXISTS=$exists" >> "$GITHUB_OUTPUT"
# - name: fail if version exists
# if: ${{ steps.version-exists.outputs.EXISTS == 'yes' }}
# uses: actions/github-script@v3
# with:
# script: |
# core.setFailed('/var/www/html/${{ steps.package-version.outputs.current-version}} already exists')
- name: Deploy with rsync
run: |
TARGET_DIR="/var/www/html/${{ steps.package-version.outputs.current-version}}"
rsync -a --rsync-path="mkdir -p $TARGET_DIR && rsync" ./build/ ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:$TARGET_DIR
- name: Update symlink
run: sudo ln -sf /var/www/html/${{ steps.package-version.outputs.current-version}} /var/www/html/latest