-
Notifications
You must be signed in to change notification settings - Fork 35
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 #56 from rasools/OMICSINT_H24
Start making pages
- Loading branch information
Showing
2 changed files
with
94 additions
and
0 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,54 @@ | ||
name: Convert PPT to HTML and Deploy | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**/*.ppt' | ||
- '**/*.pptx' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
|
||
- name: Install DeckTape | ||
run: npm install -g decktape | ||
|
||
- name: Convert PPT to HTML | ||
run: | | ||
for file in $(find . -name '*.pptx'); do | ||
decktape automatic "$file" "${file%.pptx}.html" | ||
done | ||
- name: Add and Commit HTML files | ||
run: | | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git add . | ||
git commit -m "Convert PPT to HTML" | ||
- name: Push Changes | ||
run: git push | ||
|
||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./ # Set the directory where your HTML files are | ||
|
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,40 @@ | ||
--- | ||
layout: default | ||
title: Omics Integration and Systems Biology | ||
--- | ||
|
||
#### <img border="0" src="https://s3-us-west-2.amazonaws.com/slack-files2/avatars/2019-09-12/751389607265_d59c0d58846bb2db7123_132.jpg" width="50" height="50"> Omics Integration and Systems Biology | ||
[![DOI](https://zenodo.org/badge/172930292.svg)](https://zenodo.org/badge/latestdoi/172930292) <img border="0" src="https://www.svgrepo.com/show/305241/github.svg" width="20" height="20"> [Github repository](https://github.com/NBISweden/workshop_omics_integration) | ||
|
||
Please refer to [the new homepage](https://uppsala.instructure.com/courses/52162) for updated information. | ||
|
||
Contact `edu.omics-integration [at] nbis.se` for questions. | ||
|
||
<hr> | ||
|
||
Legacy information (April 2021) can be found under the following pages: | ||
- [schedule][1] | ||
- [reading materials][2] | ||
- [pre-course preparation][3] | ||
|
||
|
||
========================================= | ||
|
||
|
||
[Course homepage](https://uppsala.instructure.com/courses/52162) | ||
|
||
Past editions: | ||
- [Online 22 - 23 July 2021, as part of the ICMB / ECCB][4] | ||
- [Online 19 - 23 April 2021][3] | ||
- [Lund 5 - 9 October 2020][2] | ||
- [Stockholm 9 - 12 Sep 2019][1] | ||
|
||
[4]: https://github.com/NBISweden/workshop_omicsint_ISMBECCB/ | ||
[3]: https://github.com/NBISweden/workshop_omics_integration/tree/course2104 | ||
[2]: https://github.com/NBISweden/workshop_omics_integration/tree/course2010 | ||
[1]: https://github.com/NBISweden/workshop_omics_integration/tree/c60abb4579849bb8a0acd756d1aa9e71125265ac | ||
|
||
|
||
[1]: schedule.html | ||
[2]: reading_materials.html | ||
[3]: precourse.html |