Skip to content

Commit

Permalink
fix: initializing git submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
karolsojko committed Oct 13, 2020
1 parent b5d3c9c commit 61a1e03
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v2

- name: Initiate submodules
run: git submodule update --init --force --remote
run: git submodule update --init

- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v2

- name: Initiate submodules
run: git submodule update --init --force --remote
run: git submodule update --init

- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v2

- name: Initiate submodules
run: git submodule update --init --force --remote
run: git submodule update --init

- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Then open your browser to `http://localhost:3001`.

The web app makes use of two optional native extensions, which, when running the app with Rails, can be configured to work as follows:

1. `git submodule update --init --force --remote` (will load the submodules in the `public/extensions` folder)
1. `git submodule update --init` (will load the submodules in the `public/extensions` folder)
1. Set the following environment variables in the .env file:
```
EXTENSIONS_MANAGER_LOCATION=extensions/extensions-manager/dist/index.html
Expand Down

0 comments on commit 61a1e03

Please sign in to comment.