Skip to content

Revert "try to remove inject metadata" #20

Revert "try to remove inject metadata"

Revert "try to remove inject metadata" #20

Workflow file for this run

# Because this library needs to be built,
# we can't easily point package.json files at the git repo for easy cross-repo testing.
#
# This workflow brings back that capability by placing the compiled assets on a "dist" branch
# (configurable via the "branch" option below)
name: Push dist
on:
push:
branches:
- main
- master
jobs:
push-dist:
name: "Push dist"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.7.0
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: pnpm
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- uses: kategengler/[email protected]
with:
branch: ${{ github.head_ref || github.ref_name }}-dist
token: ${{ secrets.GITHUB_TOKEN }}
working-directory: packages/ember-runtime-config