Skip to content

fix: install node 20.12.2 #9

fix: install node 20.12.2

fix: install node 20.12.2 #9

Workflow file for this run

name: package
on:
push:
branches:
- next
- cd_*
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
workflow_dispatch:
env:
CI: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: node_setup
uses: actions/setup-node@v3
with:
node-version: 20.12.2
- name: Install agent
run: |
npm install -g [email protected]
# Install dependencies
pnpm install
# Copy the .env.example file to .env for the demo explorer
cp packages/demo-explorer/.env.example packages/demo-explorer/.env
# Build
pnpm build
# Initialize the agent configuration
pnpm vckit config
mv agent.yml agent.template.yml
- name: docker meta details
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{github.repository}}
flavor: |
latest=auto
tags: |
type=edge,branch=next
type=semver,pattern={{version}}
type=sha
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Release
uses: docker/build-push-action@v5
with:
push: ${{ startsWith(github.ref, 'refs/tags/') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: vckit-api
# build-args: |