Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Continuous Delivery with GitHub Actions NYC 201...
Search
sullis
November 20, 2019
Programming
0
150
Continuous Delivery with GitHub Actions NYC 2019-11-20
Continuous Delivery NYC meetup
November 20, 2019
#GitHubActions
sullis
November 20, 2019
Tweet
Share
More Decks by sullis
See All by sullis
Dependency Management for Java - Portland - 2025-11-04
sullis
0
3
Dependency management for Java applications 2025-09-11
sullis
0
16
S3 NYC Iceberg meetup 2025-07-10
sullis
0
43
Amazon S3 Chicago 2025-06-04
sullis
0
110
Amazon S3 Boston 2025-05-07
sullis
0
61
Netty ConFoo Montreal 2025-02-27
sullis
0
110
GitHub Actions ConFoo Montreal 2025-02-26
sullis
0
74
Netty Portland Java User Group 2025-02-18
sullis
0
19
Amazon S3 NYJavaSIG 2024-12-12
sullis
0
200
Other Decks in Programming
See All in Programming
contribution to astral-sh/uv
shunsock
0
570
Kotlin 2.2が切り拓く: コンテキストパラメータで書く関数型DSLと新しい依存管理のかたち
knih
0
120
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
650
AI時代に必須!状況言語化スキル / ai-context-verbalization
minodriven
2
270
ノーコードからの脱出 -地獄のデスロード- / Escape from Base44
keisuke69
0
110
Blazing Fast UI Development with Compose Hot Reload (droidcon London 2025)
zsmb
0
440
Claude Agent SDK を使ってみよう
hyshu
0
1.5k
CSC305 Lecture 12
javiergs
PRO
0
250
Google Opal解体新書
mickey_kubo
3
110
スマホから Youtube Shortsを見られないようにする
lemolatoon
27
34k
Swift Concurrency 年表クイズ
omochi
3
220
CSC509 Lecture 08
javiergs
PRO
0
270
Featured
See All Featured
Testing 201, or: Great Expectations
jmmastey
46
7.7k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.5k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
116
20k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.6k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
253
22k
Rails Girls Zürich Keynote
gr2m
95
14k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3k
A Modern Web Designer's Workflow
chriscoyier
697
190k
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
950
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
658
61k
Transcript
Continuous Delivery with GitHub Actions Continuous Delivery NYC November 20,
2019 Sean Sullivan
About me
None
None
None
None
None
None
None
None
D.M.C.
Deploy Microservices Continuously
GITHUB ACTIONS
“GitHub Actions help you automate your software development workflows” source:
GitHub.com
“You can write individual tasks, called actions, and combine them
to create a custom workflow” source: GitHub.com
“GitHub Actions is available with GitHub Free, GitHub Pro, GitHub
Team, and GitHub Enterprise Cloud” source: GitHub.com
GitHub webhooks GitHub Actions
Workflows are custom automated processes that you can set up
in your repository to build, test, package, release, or deploy source: GitHub.com
source: GitHub.com Workflow file YAML file that defines your workflow
configuration. This file lives in .github/workflows
.travis.yml .github/workflows
create deployment deployment_status pull_request push schedule (and many more) Events
that trigger workflows
Events Actions Workflows Core Concepts
Core Concepts Runners Virtual Environments Secrets
Runners GitHub-hosted Self-hosted
Hosted Runners “GitHub hosts Linux and Windows runners on Standard_DS2_v2
virtual machines in Microsoft Azure with the GitHub Actions runner application installed” source: GitHub.com
Self-Hosted Runners “Self-hosted runners can be physical, virtual, container, on-premises,
or in a cloud” source: GitHub.com
Self-Hosted Runners “do not use self- hosted runners with public
repositories” source: GitHub.com
Self-Hosted Runners “Forks of your public repository can potentially run
dangerous code on your self-hosted runner machine” source: GitHub.com
Linux Windows MacOS Virtual Environments
Ubuntu 18.04 Ubuntu 16.04 Linux support
Secrets access protected keys using the secrets context object source:
GitHub.com
Secrets source: GitHub.com
Secrets source: GitHub.com
Secrets source: GitHub.com
Secrets source: GitHub.com
GitHub Universe 2019
GitHub Universe 2019 Terraform Actions AWS Actions Twilio SMS Action
DEMO
GUARDRAIL PROJECT
Actions tab
Scala build
SMS ACTION
None
None
SMS: action.yml
TERRAFORM ACTIONS
None
Terraform: action.yml
AWS ACTIONS
https://github.com/aws-actions
None
AWS: action.yml
Recap
Events Workflow Actions
EDIT YAML
RUN WORKFLOWS
Questions?
Thank you
THE END