Skip to content

Commit

Permalink
rename repo
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Mar 1, 2023
1 parent 92cbe7c commit 4a2e2cf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
## Netlify Deploy Pre-rendered Site v1.0.0
## Netlify Deploy Site v1.0.0

Initial release.

Example usage:

```yaml
- name: Deploy to Netlify 🚀
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
site: 'my-netlify-site'
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Netlify Deploy Pre-rendered Site
Netlify Deploy Site
================

Deploy a pre-rendered site to Netlify.
Deploy a site to Netlify.

## Usage

``` yaml
- name: Deploy to Netlify 🚀
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
site: 'my-netlify-site'
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Deploy to Netlify 🚀
if: github.event_name != 'pull_request'
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
dir: '_site'
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Deploy preview
id: deploy_preview
if: github.event_name == 'pull_request'
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
dir: '_site'
Expand Down
8 changes: 4 additions & 4 deletions README.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Netlify Deploy Pre-rendered Site
title: Netlify Deploy Site
format: gfm
---

Expand All @@ -15,7 +15,7 @@ action <- yaml::read_yaml("action.yml")

```yaml
- name: Deploy to Netlify 🚀
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
site: 'my-netlify-site'
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Deploy to Netlify 🚀
if: github.event_name != 'pull_request'
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
dir: '_site'
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Deploy preview
id: deploy_preview
if: github.event_name == 'pull_request'
uses: data-intuitive/netlify-deploy-action@v1
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
dir: '_site'
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Netlify Deploy Pre-rendered Site
name: Netlify Deploy Site
author: Data Intuitive
description: |
Deploy a pre-rendered site to Netlify.
Deploy a site to Netlify.
inputs:
auth:
description: Netlify auth token to deploy with. Generate the auth token [here](https://app.netlify.com/user/applications#personal-access-tokens).
Expand Down

0 comments on commit 4a2e2cf

Please sign in to comment.