Skip to content

Merge branch 'master' of github.com:Programmer-Network/yail #57

Merge branch 'master' of github.com:Programmer-Network/yail

Merge branch 'master' of github.com:Programmer-Network/yail #57

name: Release Please
on:
push:
branches:
- master
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Release Please
uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Log release info
if: steps.release.outputs.release_created
run: |
echo "Release created: ${{ steps.release.outputs.release_created }}"
echo "Tag: ${{ steps.release.outputs.tag_name }}"
echo "Version: ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}"
echo "Upload URL: ${{ steps.release.outputs.upload_url }}"
- name: Check if publish workflow will trigger
if: steps.release.outputs.release_created
run: |
echo "✅ Release published! The 'Publish Package' workflow should trigger now."
echo "Check the Actions tab to verify."