-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from NHSLeadership/develop
GitHub actions improvement
- Loading branch information
Showing
2 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
## NHSE Moodle theme (Boost extension) | ||
### Latest version v1.0 | ||
|
||
Requirements | ||
### Requirements | ||
1. Node 19.4 | ||
2. Moodle 4.1 with Boost theme | ||
|
||
Installation | ||
### Installation | ||
|
||
1. Clone that repository into your Moodle `theme/nhse` directory. | ||
``` | ||
git clone [email protected]:NHSLeadership/moodle-nhse.git nhse | ||
|
@@ -24,3 +23,17 @@ node -v | |
3. Proceed with Moodle installer instructions when new theme is detected | ||
|
||
4. If you need to change any dependencies of the SCSS files please remember to clear Moodle caches in Moodle admin panel `/admin/purgecaches.php`. Moodle SCSS compiler will do the rest for you. | ||
|
||
### Creating a new GitHub Release | ||
|
||
1. Update version.php | ||
|
||
2. Update composer.json | ||
|
||
3. Merge from develop to main | ||
|
||
4. `git checkout main && git pull` | ||
|
||
5. `git tag YYYYMMDDXX && git push --tags` (Moodle format where YYYYMMDD is the current date and XX is the release number, e.g. 2023042301 for the first release on 23rd April 2023) | ||
|
||
6. Allow GitHub Actions to complete. |