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
140
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
Amazon S3 NYJavaSIG 2024-12-12
sullis
0
130
Amazon S3 - Portland Java User Group 2024-09-17
sullis
0
67
Netty - Montreal Java User Group 2024-05-21
sullis
0
150
Netty Chicago Java User Group 2024-04-17
sullis
0
980
Java 21 - Portland Java User Group 2023-10-24
sullis
0
300
Microbenchmarking with JMH - Portland 2023-03-14
sullis
0
130
Code generation on the Java VM 2022-04-19
sullis
0
120
Mockito 2022-01-25
sullis
0
170
GitHub Actions 2021-12-16
sullis
0
38
Other Decks in Programming
See All in Programming
チームの立て直し施策をGoogleの 『効果的なチーム』と見比べてみた
maroon8021
0
270
Spring gRPC について / About Spring gRPC
mackey0225
0
170
2,500万ユーザーを支えるSREチームの6年間のスクラムのカイゼン
honmarkhunt
6
4.2k
Pythonでもちょっとリッチな見た目のアプリを設計してみる
ueponx
0
220
JavaScriptツール群「UnJS」を5分で一気に駆け巡る!
k1tikurisu
8
1.3k
Lookerは可視化だけじゃない。UIコンポーネントもあるんだ!
ymd65536
1
140
個人アプリを2年ぶりにアプデしたから褒めて / I just updated my personal app, praise me!
lovee
0
300
asdf-ecspresso作って 友達が増えた話 / Fujiwara Tech Conference 2025
koluku
0
1.6k
Vue.jsでiOSアプリを作る方法
hal_spidernight
0
120
ATDDで素早く安定した デリバリを実現しよう!
tonnsama
1
2.4k
動作確認やテストで漏れがちな観点3選
starfish719
5
860
自動で //nolint を挿入する取り組み / Gopher's Gathering
utgwkk
1
170
Featured
See All Featured
Done Done
chrislema
182
16k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
27
1.5k
Designing Experiences People Love
moore
139
23k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
520
Designing for Performance
lara
604
68k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
44
9.4k
Intergalactic Javascript Robots from Outer Space
tanoku
270
27k
Faster Mobile Websites
deanohume
305
30k
The World Runs on Bad Software
bkeepers
PRO
67
11k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
39
1.9k
What's in a price? How to price your products and services
michaelherold
244
12k
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