Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netlify/actions
https://github.com/netlify/actions
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/netlify/actions
- Owner: netlify
- License: mit
- Created: 2018-10-16T09:41:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-06T19:48:47.000Z (about 1 year ago)
- Last Synced: 2024-08-01T16:36:16.860Z (3 months ago)
- Language: Shell
- Size: 28.3 KB
- Stars: 373
- Watchers: 10
- Forks: 60
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-actions - Deploy to Netlify
- fucking-awesome-actions - Deploy to Netlify
- awesome-list - actions
- awesome-workflows - Deploy to Netlify
README
# GitHub Actions for Netlify
This repository contains GitHub Actions for Netlify, for performing common tasks such as triggering a site deploy, as well as a generic cli for doing arbitrary actions with the netlify commandline client.
## Usage
Usage information for individual commands can be found in their respective directories.```yml
on: push
name: Publish docs if changed
jobs:
checkChangesInDocs:
name: Check changes in docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Check changes in stories
uses: netlify/actions/diff-includes@master
with:
args: docs
```