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
140
Amazon S3 - Portland Java User Group 2024-09-17
sullis
0
70
Netty - Montreal Java User Group 2024-05-21
sullis
0
160
Netty Chicago Java User Group 2024-04-17
sullis
0
990
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
41
Other Decks in Programming
See All in Programming
富山発の個人開発サービスで日本中の学校の業務を改善した話
krpk1900
4
390
CI改善もDatadogとともに
taumu
0
120
Pulsar2 を雰囲気で使ってみよう
anoken
0
240
技術を根付かせる / How to make technology take root
kubode
1
250
DROBEの生成AI活用事例 with AWS
ippey
0
130
Rubyで始める関数型ドメインモデリング
shogo_tksk
0
110
Unity Android XR入門
sakutama_11
0
160
密集、ドキュメントのコロケーション with AWS Lambda
satoshi256kbyte
0
190
Honoのおもしろいミドルウェアをみてみよう
yusukebe
1
210
データの整合性を保つ非同期処理アーキテクチャパターン / Async Architecture Patterns
mokuo
47
17k
AWS Organizations で実現する、 マルチ AWS アカウントのルートユーザー管理からの脱却
atpons
0
150
Multi Step Form, Decentralized Autonomous Organization
pumpkiinbell
1
740
Featured
See All Featured
The World Runs on Bad Software
bkeepers
PRO
67
11k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
49
2.3k
Building an army of robots
kneath
303
45k
Typedesign – Prime Four
hannesfritz
40
2.5k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.3k
KATA
mclloyd
29
14k
How GitHub (no longer) Works
holman
314
140k
Agile that works and the tools we love
rasmusluckow
328
21k
Speed Design
sergeychernyshev
27
790
Large-scale JavaScript Application Architecture
addyosmani
511
110k
Bash Introduction
62gerente
611
210k
Mobile First: as difficult as doing things right
swwweet
223
9.3k
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