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
160
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Continuous Delivery with GitHub Actions NYC 2019-11-20
Continuous Delivery NYC meetup
November 20, 2019
#GitHubActions
sullis
November 20, 2019
More Decks by sullis
See All by sullis
Dependency Management for Java - Code Remix Summit 2026-05-12
sullis
0
81
AI Assisted Software Development - Portland Java User Group - 2026-04-14
sullis
0
87
Dependency Management for Java - Seattle 2025-11-18
sullis
0
59
Dependency Management for Java - Portland - 2025-11-04
sullis
0
39
Dependency management for Java applications 2025-09-11
sullis
0
62
S3 NYC Iceberg meetup 2025-07-10
sullis
0
64
Amazon S3 Chicago 2025-06-04
sullis
0
150
Amazon S3 Boston 2025-05-07
sullis
0
120
Netty ConFoo Montreal 2025-02-27
sullis
0
190
Other Decks in Programming
See All in Programming
まずはプロンプトガイドを読もう、話はそれからだ
kiakiraki
1
200
AIに既存システムを理解させる技術 ~レガシーを見捨てないハーネスエンジニアリング入門~
ochtum
0
140
今さら聞けない .NET CLI
htkym
0
210
Webエンジニアなのにブラウザの仕組みがわからないので、Pythonで自作してみた
tatsuki12
4
990
レビュー履歴をAIに食わせて、 Compose移行を加速するs
shihochan
0
190
[PyCon KR 2026] More Variants, More Diversity for AI Accelerators
achimnol
0
100
Dockerfile CMD for Node.js
grazie1999
0
110
ソフトウェアエンジニアにとっての生成AI - 特性を知って使い倒す / generative ai for software enginner
kishida
7
2.1k
人間の目はかわらない、だからJPEGは30年もつ
yuzneri
12
19k
自動化したのに回らない テスト運用の壁―AI時代の品質責任と生産性
mfunaki
0
410
GDG Korea Android: 2026 I/O Extended ~ What's new in Android development tools
pluu
0
240
PostgreSQL 18で考えるUUID主キー
kazuhiro1982
0
500
Featured
See All Featured
Technical Leadership for Architectural Decision Making
baasie
3
520
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
470
Build The Right Thing And Hit Your Dates
maggiecrowley
39
3.4k
How to build a perfect <img>
jonoalderson
1
5.9k
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
300
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
0
380
Believing is Seeing
oripsolob
1
200
Darren the Foodie - Storyboard
khoart
PRO
3
3.7k
Large-scale JavaScript Application Architecture
addyosmani
515
110k
Leadership Guide Workshop - DevTernity 2021
reverentgeek
1
340
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.6k
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
210
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