release #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / ReleaseInvalid workflow file
|