Skip to content

Commit

Permalink
Merge pull request #56 from rasools/OMICSINT_H24
Browse files Browse the repository at this point in the history
Start making pages
  • Loading branch information
rasools authored Sep 9, 2024
2 parents 78adea5 + 66b783e commit 4873fc8
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflow/convert-ppt-to-html.yml
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

40 changes: 40 additions & 0 deletions index.md
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

0 comments on commit 4873fc8

Please sign in to comment.