Hide base path from public URL of rollup-public-assets #312
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 Plan Review | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
prepare_release_notes: | |
name: Prepare Release Notes | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
outputs: | |
explanation: ${{ steps.explanation.outputs.text }} | |
steps: | |
- uses: actions/checkout@v3 | |
# We need to download lots of history so that | |
# lerna-changelog can discover what's changed since the last release | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
with: | |
use_pinned_node: true | |
- name: "Generate Explanation and Prep Changelogs" | |
id: explanation | |
run: | | |
# Print each command out to the terminal before running | |
set -x | |
# For an unknown reason the `pnpm embroider-release` bin is not | |
# wired up as it is locally. | |
node ./test-packages/release/src/cli.js prepare | |
# Don't print this, because it can be very large | |
set +x | |
# Have to use this EOF syntax for multi-line strings. | |
echo 'text<<EOF' >> $GITHUB_OUTPUT | |
jq .description .release-plan.json -r >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
env: | |
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} | |
- uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: "Prepare Release using 'embroider-release'" | |
author: "github-actions[bot] <[email protected]>" | |
labels: "internal" | |
branch: embroider-release-preview | |
title: Prepare Release | |
body: | | |
Preview of the Release. | |
See `.github/workflows/release-plan-preview.yml` for how this PR was created. | |
----------------------------------------- | |
${{ steps.explanation.outputs.text }} |