Skip to content

Commit

Permalink
Merge pull request #16 from NIAEFEUP/gh-actions-workshop
Browse files Browse the repository at this point in the history
CI/CD Github actions workshop
  • Loading branch information
LuisDuarte1 authored Apr 3, 2024
2 parents 1340114 + f8db09c commit b29e001
Show file tree
Hide file tree
Showing 10 changed files with 630 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
.DS_Store
.vscode
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@

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

- [CI/CD](https://niaefeup.github.io/slides/gh-actions-workshop)

## Archived Workshop Slides

- [Flutter](https://niaefeup.github.io/slides/uni-flutter-internal-workshop)
Expand Down
Binary file added gh-actions-workshop/assets/ci-cd.webp
Binary file not shown.
Binary file added gh-actions-workshop/assets/logo_2018.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gh-actions-workshop/assets/pipeline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gh-actions-workshop/assets/profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gh-actions-workshop/assets/template.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions gh-actions-workshop/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>

<head>
<title>NIAEFEUP - Flutter Workshop</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
</head>

<body>
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
var slideshow = remark.create({
sourceUrl: 'presentation.md',
highlightStyle: 'sunburst'
});

window.addEventListener('load', function () {
var highlighted = document.querySelectorAll("code.terminal span.hljs-ansi");
Array.prototype.forEach.call(highlighted, function (next) {
next.insertAdjacentHTML("beforebegin", next.textContent);
next.parentNode.removeChild(next);
});
});
</script>
</body>

</html>
Loading

0 comments on commit b29e001

Please sign in to comment.