Skip to content

v0.1.4 — host-url input #5

v0.1.4 — host-url input

v0.1.4 — host-url input #5

Workflow file for this run

name: Publish to Marketplace
on:
release:
types: [published]
workflow_dispatch:
inputs:
version:
description: 'Version tag (e.g., v1.0.0)'
required: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Validate action.yml
run: |
# Basic validation
if ! grep -q "name:" action.yml; then
echo "❌ action.yml missing name"
exit 1
fi
if ! grep -q "runs:" action.yml; then
echo "❌ action.yml missing runs section"
exit 1
fi
echo "✅ action.yml is valid"
- name: Create Release
if: github.event_name == 'release'
run: |
echo "Release published: ${{ github.event.release.tag_name }}"
echo "Release notes: ${{ github.event.release.body }}"