This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
trying workflow_call now #29
Workflow file for this run
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 Please | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- ta/sc-233251/release-please-support | ||
- ta/sc-233251/release-please-support-fake-main | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write # Needed if using OIDC to get release secrets. | ||
contents: write # Contents and pull-requests are for release-please to make releases. | ||
pull-requests: write | ||
steps: | ||
- uses: google-github-actions/release-please-action@v4 | ||
id: release | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
target-branch: ${{ github.ref_name }} | ||
call-workflow-passing-data: | ||
uses: ./.github/workflows/publish.yml | ||
if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
Check failure on line 27 in .github/workflows/release-please.yml GitHub Actions / Release PleaseInvalid workflow file
|
||
with: | ||
run_tests-path: true | ||
dry_run: true |