Skip to content

@varlock/bumpy v1.13.0 #5

@varlock/bumpy v1.13.0

@varlock/bumpy v1.13.0 #5

Workflow file for this run

# simple workflow that runs after a release is published
# used only to verify "release workflow -> further actions" is working
name: On Release
on:
release:
types: [published]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- run: echo "Release event triggered successfully!"
- run: |
echo "Release tag: ${{ github.event.release.tag_name }}"
echo "Release name: ${{ github.event.release.name }}"
echo "Created by: ${{ github.event.release.author.login }}"