Skip to content

release

release #3

Workflow file for this run

name: Release
on:
workflow_dispatch:
jobs:
buildrelease:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node 18
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install frontend dependencies
run: pnpm install --prefer-frozen-lockfile
working-directory: invokeai/frontend/web
- name: Install python dependencies
run: pip install --upgrade build twine
- uses: samuelcolvin/check-python-version@v4
id: check-python-version
with:
skip_env_check: true
version_file_path: invokeai/version/invokeai_version.py
- name: Run create_installer.sh
id: create_installer
run: ./create_installer.sh
working-directory: installer
- name: Upload build as workflow artifact
uses: actions/upload-artifact@v4
with:
path: installer/${{steps.create_installer.outputs.INSTALLER_NAME)}}

Check failure on line 58 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 58, Col: 17): Unexpected symbol: ')'. Located at position 46 within expression: steps.create_installer.outputs.INSTALLER_NAME)