Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/marp-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,18 @@ jobs:
- name: Copy images
run: mkdir build && cp -R slides/img build/img && cp -R slides/themes build/themes

- name: Marp Build (README)
- name: Marp Build (HTML)
uses: docker://marpteam/marp-cli:latest
with:
args: --theme-set slides/themes -o build/index.html --html -- slides/Slides.md
env:
MARP_USER: root:root
- name: Marp Build (PDF)
uses: docker://marpteam/marp-cli:latest
with:
args: --theme-set slides/themes -o build/Slides.pdf --pdf --allow-local-files --html -- slides/Slides.md
env:
MARP_USER: root:root
- name: Setup Pages
uses: actions/configure-pages@v6
- name: Upload artifact
Expand Down
23 changes: 8 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
# CI/CD with GitHub Actions

This repository contains resources and demos for the talk "CI/CD with GitHub Actions" by Chris Ayers.
Resources and demos for Chris Ayers' talk "CI/CD with GitHub Actions", showcasing workflows and pipelines across multiple scenarios.

## Slides

The slides for the talk can be found at:\
[https://chris-ayers.com/github-actions-demos/](https://chris-ayers.com/github-actions-demos/)

## Repository Content

This repository contains multiple demos and pipelines showcasing the use of GitHub Actions in various scenarios.
[View HTML slides](https://chris-ayers.com/github-actions-demos/) | [Download PDF](https://chris-ayers.com/github-actions-demos/Slides.pdf)

## Resources

- [Slide source](slides/Slides.md)
- [Example workflows](.github/workflows)
- [Workshop agenda and resources](slides/workshop.md)
- [GitHub Actions Documentation](https://docs.github.com)
- [GitHub Skills](https://skills.github.com)
- [nektos/act - Run Actions Locally](https://github.com/nektos/act)

## Contact

## Connect with Chris Ayers

Feel free to connect with Chris Ayers on social media and visit his blog for more information on Bicep and other topics:
**Chris Ayers**, Principal Software Engineer

- Twitter: [@Chris_L_Ayers](https://twitter.com/Chris_L_Ayers)
- Mastodon: [@Chrisayers@hachyderm.io](https://hachyderm.io/@Chrisayers)
- LinkedIn: [chris-l-ayers](https://linkedin.com/in/chris-l-ayers/)
- Blog: [https://chris-ayers.com/](https://chris-ayers.com/)
- GitHub: [Codebytes](https://github.com/codebytes)
[Blog](https://chris-ayers.com/) | [GitHub](https://github.com/codebytes) | [LinkedIn](https://linkedin.com/in/chris-l-ayers/) | [Bluesky](https://bsky.app/profile/chris-ayers.com) | [Mastodon](https://hachyderm.io/@Chrisayers)

## License

Expand Down
4 changes: 2 additions & 2 deletions slides/Slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ footer: '@Chris_L_Ayers - https://chris-ayers.com'
<i class="fa-brands fa-linkedin"></i> LinkedIn: - [chris\-l\-ayers](https://linkedin.com/in/chris-l-ayers/)
<i class="fa fa-window-maximize"></i> Blog: [https://chris-ayers\.com/](https://chris-ayers.com/)
<i class="fa-brands fa-github"></i> GitHub: [Codebytes](https://github.com/codebytes)
<i class="fa-brands fa-mastodon"></i> Mastodon: @Chrisayers@hachyderm.io
<i class="fa-brands fa-mastodon"></i> Mastodon: [@Chrisayers@hachyderm.io](https://hachyderm.io/@Chrisayers)
~~<i class="fa-brands fa-twitter"></i> Twitter: @Chris_L_Ayers~~

---
Expand Down Expand Up @@ -1092,7 +1092,7 @@ h2 { margin-bottom: 0.2em; }
<i class="fa-brands fa-linkedin"></i> LinkedIn: - [chris\-l\-ayers](https://linkedin.com/in/chris-l-ayers/)
<i class="fa fa-window-maximize"></i> Blog: [https://chris-ayers\.com/](https://chris-ayers.com/)
<i class="fa-brands fa-github"></i> GitHub: [Codebytes](https://github.com/codebytes)
<i class="fa-brands fa-mastodon"></i> Mastodon: @Chrisayers@hachyderm.io
<i class="fa-brands fa-mastodon"></i> Mastodon: [@Chrisayers@hachyderm.io](https://hachyderm.io/@Chrisayers)
~~<i class="fa-brands fa-twitter"></i> Twitter: @Chris_L_Ayers~~

</div>
Expand Down
Loading