-
Notifications
You must be signed in to change notification settings - Fork 305
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 #16 from akospasztor/develop
Merge v1.1.0 release into master
- Loading branch information
Showing
154 changed files
with
27,107 additions
and
8,626 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,44 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: sudo apt-get install doxygen | ||
- run: doxygen docs/Doxyfile | ||
- uses: actions/upload-artifact@master | ||
with: | ||
name: documentation | ||
path: docs/html | ||
|
||
deploy: | ||
runs-on: ubuntu-18.04 | ||
needs: build | ||
steps: | ||
- uses: actions/download-artifact@v1 | ||
with: | ||
name: documentation | ||
path: . | ||
- name: git setup | ||
run: | | ||
git init | ||
git config user.name "Akos Pasztor" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
- name: git check | ||
run: | | ||
if [ -z "$(git status --porcelain)" ] | ||
then | ||
echo "Nothing to commit." | ||
exit 1 | ||
fi | ||
- name: git push | ||
run: | | ||
git add . | ||
git commit -m 'Deploy to GitHub Pages' | ||
git push --force https://${GITHUB_ACTOR}:${{secrets.GH_PAT}}@github.com/${GITHUB_REPOSITORY}.git master:gh-pages |
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,3 +1,6 @@ | ||
EWARM/settings/ | ||
EWARM/L476/ | ||
EWARM/L496/ | ||
.vscode/ | ||
**/EWARM/*.dep | ||
**/EWARM/settings/ | ||
**/EWARM/**/Exe/ | ||
**/EWARM/**/List/ | ||
**/EWARM/**/Obj/ |
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.