Skip to content

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #12

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #12

Workflow file for this run

# name: Simple Build
# on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Install Node
# uses: actions/setup-node@v1
# with:
# node-version: 14
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Install deps
# run: npm ci
# - name: Build
# run: npm run build
# - name: Upload build result
# uses: actions/upload-artifact@v1
# with:
# name: build
# path: ./build
# deploy:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Download build
# uses: actions/download-artifact@v1
# with:
# name: build
# - name: Transfer build files to server
# uses: appleboy/[email protected]
# with:
# host: 89.208.198.186
# username: ubuntu
# key: ${{ secrets.PRIVATE_KEY }}
# source: "build"
# target: "/home/ubuntu/frontend"