Skip to content

Commit b29e001

Browse files
authored
Merge pull request #16 from NIAEFEUP/gh-actions-workshop
CI/CD Github actions workshop
2 parents 1340114 + f8db09c commit b29e001

File tree

10 files changed

+630
-1
lines changed

10 files changed

+630
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.DS_Store
1+
.DS_Store
2+
.vscode

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737

3838
- [Web Extension](https://niaefeup.github.io/slides/web-extension)
3939

40+
- [CI/CD](https://niaefeup.github.io/slides/gh-actions-workshop)
41+
4042
## Archived Workshop Slides
4143

4244
- [Flutter](https://niaefeup.github.io/slides/uni-flutter-internal-workshop)
191 KB
Loading
45.3 KB
Loading
37 KB
Loading
1.75 MB
Loading
1.93 KB
Loading

gh-actions-workshop/index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>NIAEFEUP - Flutter Workshop</title>
6+
<meta charset="utf-8">
7+
<link rel="stylesheet" href="./style.css">
8+
</head>
9+
10+
<body>
11+
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript"></script>
12+
<script type="text/javascript">
13+
var slideshow = remark.create({
14+
sourceUrl: 'presentation.md',
15+
highlightStyle: 'sunburst'
16+
});
17+
18+
window.addEventListener('load', function () {
19+
var highlighted = document.querySelectorAll("code.terminal span.hljs-ansi");
20+
Array.prototype.forEach.call(highlighted, function (next) {
21+
next.insertAdjacentHTML("beforebegin", next.textContent);
22+
next.parentNode.removeChild(next);
23+
});
24+
});
25+
</script>
26+
</body>
27+
28+
</html>

0 commit comments

Comments
 (0)