Skip to content

Commit

Permalink
debug alpha releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Sep 12, 2024
1 parent f24fc7c commit c8929fa
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/debug-alpha-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Debug Alpha Releases

on:
push:
workflow_dispatch:

jobs:
release:
name: Tag + Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: build for publish
env:
BUILD_TYPE: alpha
OVERRIDE_FEATURES: ''
run: node bin/build-for-publishing.js
- uses: actions/upload-artifact@v4
with:
name: package.json
path: package.json
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist


3 changes: 3 additions & 0 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,8 @@ function pruneEmptyBundles() {
};
}

/* eslint-disable no-console */

function packageMeta() {
let renamedModules = Object.fromEntries(
glob
Expand All @@ -511,6 +513,7 @@ function packageMeta() {
return [name, 'ember-source/' + name];
})
);
console.log(`updating packageMeta: ${JSON.stringify(renamedModules, null, 2)}`);
return {
name: 'package-meta',
buildEnd(error) {
Expand Down

0 comments on commit c8929fa

Please sign in to comment.