Skip to content

chore: fix build script #2

chore: fix build script

chore: fix build script #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Setup ENV
run: |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
echo "NODE_VERSION=$(cat .node-version)" >> $GITHUB_ENV
- name: Setup Node Stuff
uses: ./.github/actions/setup-node
with:
node: ${{ env.NODE_VERSION }}
- name: Setup Golang Stuff
uses: ./.github/actions/setup-golang
with:
golang: "1.21.5"
- name: Build
run: pnpm turbo build