GitHub Actions in Action
Continuous integration and delivery for DevOps Michael Kaufmann. Listing 4.5 Testing an action in a local workflow name: Test Action on: [push] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout repo ... out the repository first ...
GitHub Actions Cookbook
... GitHub Actions workflows will not automatically download the code from your repository . If you want to do something with files in your repository , you have to check out the content first . This is done using a GitHub action a reusable ...
Learning GitHub Actions
... action . Note the way this is referenced . actions / checkout @ v3 refers to the relative path after github.com , so ... checking out the source from this repository since it is in this repository . Line 13 : The hyphen at the ...
Salesforce DevOps for Architects
... actions/checkout@v2 to check out the source code of the current repository. With GitHub Actions, it's possible to ... action from the actions repository, and v2 is the tag of the version you want to use. This checkout action checks ...
Learning GitHub Actions
With this book, you will: Learn what GitHub Actions are, the various use cases for them, and how to incorporate them into your processes Understand GitHub Actions' structure, syntax, and semantics Automate processes and implement ...
Hands-on GitHub Actions
This book will give you an in-depth idea of implementation patterns, solutions for different technology builds, guidelines to implement your own custom components as actions, and usage of features available with GitHub Actions workflows, to ...
