Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
DEV: Fix the cron ember workflow (discourse#14320)
Browse files Browse the repository at this point in the history
  • Loading branch information
CvX authored Sep 13, 2021
1 parent 849c16e commit c16358e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ember.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ on:
branches:
- main
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
build:
name: run
if: true
runs-on: ubuntu-latest
container: discourse/discourse_test:release
timeout-minutes: 60
Expand Down Expand Up @@ -41,7 +40,13 @@ jobs:
- name: Official Plugins Install
if: ${{ github.event_name == 'schedule' }}
run: sudo -E -u discourse -H bundle exec rake plugin:install_all_official
run: |
bundle config --local path vendor/bundle
bundle config --local deployment true
bundle config --local without development
bundle install --jobs 4
bundle clean
bundle exec rake plugin:install_all_official
- name: Yarn install
working-directory: ./app/assets/javascripts/discourse
Expand Down

0 comments on commit c16358e

Please sign in to comment.