Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit f654b11

Browse files
authored
fix: github actions workflows folder (#688)
1 parent f8ebc7d commit f654b11

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/guides/deploying/github-actions.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Deploy to AWS, Google Cloud or Microsoft Azure using GitHub Actions
33
tags:
44
- CI/CD
55
published_at: 2023-12-21
6-
updated_at: 2024-08-20
6+
updated_at: 2024-12-18
77
---
88

99
# Deployment Automation with GitHub Actions and Nitric
@@ -22,15 +22,15 @@ This guide will demonstrate how Nitric can be used, along with [GitHub Actions](
2222
Ensure you have a Nitric project ready to deploy. If you haven’t set up a project yet, refer to our [quickstart guide](/get-started/quickstart).
2323

2424
2. **Add a GitHub Actions Workflow File**<br />
25-
Create a YAML file in a `.github/` folder at the root of your project to configure the deployment automation steps. You can name the file according to your preference; for our examples, we use `deploy-aws.yaml`, `deploy-azure.yaml`, and `deploy-gcp.yaml`.
25+
Create a YAML file in a `.github/workflows/` folder at the root of your project to configure the deployment automation steps. You can name the file according to your preference; for our examples, we use `deploy-aws.yaml`, `deploy-azure.yaml`, and `deploy-gcp.yaml`.
2626

2727
Here’s example content for each cloud provider:
2828

2929
<Tabs>
3030

3131
<TabItem label="AWS">
3232

33-
```yaml title:.github/deploy-aws.yaml
33+
```yaml title:.github/workflows/deploy-aws.yaml
3434
name: Example Nitric AWS Deployment
3535

3636
# Triggers for the workflow
@@ -94,7 +94,7 @@ jobs:
9494
9595
<TabItem label="Azure">
9696
97-
```yaml title:.github/deploy-azure.yaml
97+
```yaml title:.github/workflows/deploy-azure.yaml
9898
name: Example Nitric Azure Deployment
9999

100100
# Triggers for the workflow
@@ -175,7 +175,7 @@ jobs:
175175
176176
<TabItem label="Google Cloud">
177177
178-
```yaml title:.github/deploy-gcp.yaml
178+
```yaml title:.github/workflows/deploy-gcp.yaml
179179
name: Example Nitric GCP Deployment
180180

181181
# Triggers for the workflow

0 commit comments

Comments
 (0)