-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
247 additions
and
172 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Deploy to Production | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Deploy app | ||
env: | ||
TOKEN: ${{ secrets.HEROKU_API_TOKEN }} | ||
APP: ${{ secrets.HEROKU_APP_PRODUCTION }} | ||
run: git push -f https://heroku:$TOKEN@git.heroku.com/$APP.git HEAD:master |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Deploy to Staging | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Deploy app | ||
env: | ||
TOKEN: ${{ secrets.HEROKU_API_TOKEN }} | ||
APP: ${{ secrets.HEROKU_APP_STAGING }} | ||
run: git push -f https://heroku:$TOKEN@git.heroku.com/$APP.git HEAD:master |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Changelogs | ||
|
||
**v1.3.0 - 21/11/2019** | ||
- Preload Zones in State query | ||
- Updated to the latest Rails 5 | ||
- Updated dependencies | ||
- Added monitoriing | ||
- Integrated Github Actions | ||
|
||
**v1.2.3 - 07/04/2019** | ||
- Resolve minor issue | ||
|
||
**v1.2.2 - 06/04/2019** | ||
- Resolve minor issue | ||
|
||
**v1.2.1 - 04/01/2019** | ||
- Resolve minor issue | ||
|
||
**v1.2.0 - 04/01/2019** | ||
- Added v2 scraper to scrape from e-solat's new format | ||
|
||
**v1.1.0 - 02/09/2018** | ||
- Added backup scraper to scrape from a backup source | ||
|
||
**v1.0.1 - 15/01/2018** | ||
- Modify sanitiser to offset incorrect prayer times | ||
|
||
**v1.0.0 - 01/02/2017** | ||
- Initial API Release |
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
Oops, something went wrong.