Skip to content

trying deploy script #8

trying deploy script

trying deploy script #8

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- uses: supplypike/setup-bin@v3
with:
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.8.1/cr'
name: 'cr'
version: '0.8.1'
- uses: supplypike/setup-bin@v3
with:
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.8.1/caps'
name: 'caps'
version: '0.8.1'
- name: "test"
run: caps --ci
- run: cr --emit-js -1
- run: mkdir -p dist-server && cp -r {package.json,main.mjs,js-out,yarn.lock} dist-server/
- name: Upload server script
id: deploy-server
uses: Pendect/[email protected]
env:
DEPLOY_KEY: ${{secrets.rsync_private_key}}
with:
flags: '-avzr --progress'
options: ''
ssh_options: ''
src: 'dist-server/*'
dest: '[email protected]:/servers/cos-up/'
- name: Display status from deploy
run: echo "${{ steps.deploy-server.outputs.status }}"