Skip to content

Test deployment with GH Actions #31

Test deployment with GH Actions

Test deployment with GH Actions #31

Workflow file for this run

name: test-deployment
run-name: Test deployment with GH Actions
on:
push:
branchs:
- test-deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.11'
- name: Enable and set up Yarn
run: |
corepack enable
yarn set version stable
- name: Install packages and build
run: |
yarn install
yarn run build-main
- name: Get production artifact
uses: actions/upload-artifact@v4
with:
name: production-build
path: dist
deploy:
runs-on: ubuntu-latest
env:
SERVER_NAME: ${{ vars.SERVER_NAME }}
needs: build
steps:
- uses: actions/checkout@v4
- name: Download production articfact
uses: actions/download-artifact@v4
with:
name: production-build
- name: Upload prod build to server
uses: appleboy/[email protected]
with:
host: ${{ var.SERVER_NAME }}

Check failure on line 42 in .github/workflows/test-deployment.yml

View workflow run for this annotation

GitHub Actions / test-deployment

Invalid workflow file

The workflow is not valid. .github/workflows/test-deployment.yml (Line: 42, Col: 17): Unrecognized named-value: 'var'. Located at position 1 within expression: var.SERVER_NAME
username: root
key: ${{ secrets.SERVER_SSH_KEY }}
port: 22
script_path: ./scripts/copy2site.sh