Skip to content

Update simple_release.yml #8

Update simple_release.yml

Update simple_release.yml #8

# Simple release job example which build the addon and creates draft for the release.
# Job has to be started manually.
name: simple_release
on:
workflow_dispatch:
inputs:
version:
description: 'version'
required: true
default: '1.5.0dev'
permissions:
contents: write
jobs:

Check failure on line 16 in .github/workflows/simple_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/simple_release.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
Build:
runs-on: ubuntu-latest
steps:
- name: Build addon
uses: blenderkit/blender-addon-build@main
with:
name: Cyberpunk Blender Plugin
name-suffix: "PR-time"
build-location: "./"
exclude-files: ".git;.github;README.md"
Release:
runs-on: ubuntu-latest
needs: Build
steps:
- name: Release addon
uses: Simarilius-uk/blender-addon-release@main
with:
artifact_name: Cyberpunk-Blender-Add-on-
release_name: Cyberpunk Blender Add on
version: ${{github.event.inputs.version}}