Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ jobs:
file: coverage/lcov.info

build-deploy-frontend:
if: github.ref == 'refs/heads/nextjs'
needs: javascript-tests
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -186,6 +185,7 @@ jobs:
--context-path .

- name: Release on Heroku
if: github.ref == 'refs/heads/nextjs'
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: heroku container:release --app mitopen-rc-nextjs web
Expand Down
2 changes: 1 addition & 1 deletion frontends/main/Dockerfile.web
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app

COPY .yarnrc.yml /app
COPY .yarn/releases/yarn-4.4.1.cjs /app/.yarn/releases/yarn-4.4.1.cjs
COPY .yarn/releases /app/.yarn/releases
COPY yarn.lock /app
COPY package.json /app
COPY frontends /app/frontends
Expand Down
Loading