Skip to content

Commit

Permalink
fix(ember): Restore ember package contents (#5318)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Jun 27, 2022
1 parent cba9861 commit 8a8e489
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -12,7 +12,8 @@ on:
required: false

env:
DEFAULT_NODE_VERSION: '16'
# We pin the exact version to enforce reproducable builds with node + npm.
DEFAULT_NODE_VERSION: '16.15.1'

HEAD_COMMIT: ${{ github.event.inputs.commit || github.sha }}

Expand Down Expand Up @@ -58,15 +59,15 @@ jobs:
echo "COMMIT_SHA=$COMMIT_SHA" >> $GITHUB_ENV
echo "COMMIT_MESSAGE=$(git log -n 1 --pretty=format:%s $COMMIT_SHA)" >> $GITHUB_ENV
outputs:
commit_label: "${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}"
commit_label: '${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}'

job_install_deps:
name: Install Dependencies
needs: job_get_metadata
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: "Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})"
- name: 'Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})'
uses: actions/checkout@v2
with:
ref: ${{ env.HEAD_COMMIT }}
Expand All @@ -93,7 +94,7 @@ jobs:

job_build:
name: Build
needs: [ job_get_metadata, job_install_deps ]
needs: [job_get_metadata, job_install_deps]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
Expand Down
4 changes: 4 additions & 0 deletions packages/ember/.npmignore
@@ -1,3 +1,6 @@
# Disable rules of .npmignore in workspace root for this package
!*

# compiled output
/dist/
/tmp/
Expand All @@ -24,6 +27,7 @@
/testem.js
/tests/
/yarn.lock
/.npmignore
.gitkeep

# ember-try
Expand Down

0 comments on commit 8a8e489

Please sign in to comment.