Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/templates/private-docker-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This is useful for:
To add a private Docker image to your template:

1. In the template editor, add a service with a Docker image source
2. Enter your registry credentials in the service settings (username and password for Dockerhub, username and access token for Github registry)
2. Enter your registry credentials in the service settings (username and password for Dockerhub, username and access token for GitHub registry)
3. Railway encrypts and stores the credentials securely

When users deploy your template, Railway authenticates with your registry to pull the image. Users see that the service uses hidden registry credentials, but cannot access the credentials themselves.
Expand Down
2 changes: 1 addition & 1 deletion content/guides/deploy-an-otel-collector-stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To be successful using this tutorial, you should already have -
If you are looking for a quicker way to get started, you can deploy the collector and backend stack from a template by clicking the button below.
<a href="https://railway.com/deploy/7KNDff" target="_blank"><img src="https://railway.com/button.svg" alt="Deploy on Railway" /></a>

There is also a live demo of the project you will build in this tutorial <a href="https://classy-writing-production.up.railway.app/" target="_blank">here</a>, and you can access the code repository <a href="https://github.com/railwayapp-templates/opentelemetry-collector-stack" target="_blank">here in Github</a>. You can find some example apps, including the one you will build in this tutorial, in the <a href="https://github.com/railwayapp-templates/opentelemetry-collector-stack/tree/main/exampleApps" target="_blank">exampleApps folder</a>.
There is also a live demo of the project you will build in this tutorial <a href="https://classy-writing-production.up.railway.app/" target="_blank">here</a>, and you can access the code repository <a href="https://github.com/railwayapp-templates/opentelemetry-collector-stack" target="_blank">here in GitHub</a>. You can find some example apps, including the one you will build in this tutorial, in the <a href="https://github.com/railwayapp-templates/opentelemetry-collector-stack/tree/main/exampleApps" target="_blank">exampleApps folder</a>.

**Let's get started!**

Expand Down
6 changes: 3 additions & 3 deletions content/guides/github-actions-post-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ tags:
topic: architecture
---

[Github Actions](https://github.com/features/actions) come with a pretty neat set of features to automate your workflows. This post talks about using Github Actions to run post-deploy actions.
[GitHub Actions](https://github.com/features/actions) come with a pretty neat set of features to automate your workflows. This post talks about using GitHub Actions to run post-deploy actions.

At Railway, we've set up Github triggers for automatic deployments when you push to a selected branch, and with Github Actions, you can automate several parts of your development workflow. Recently, within the Railway [Discord](https://discord.gg/railway) and [Slack](/platform/support#slack), we've had a couple of users ask us how they'd go about running commands or webhooks after their app is deployed so we thought it'd be a good idea to publish a short tutorial doing just that, with Github Actions.
At Railway, we've set up GitHub triggers for automatic deployments when you push to a selected branch, and with GitHub Actions, you can automate several parts of your development workflow. Recently, within the Railway [Discord](https://discord.gg/railway) and [Slack](/platform/support#slack), we've had a couple of users ask us how they'd go about running commands or webhooks after their app is deployed so we thought it'd be a good idea to publish a short tutorial doing just that, with GitHub Actions.

## The action

Since Railway makes the deployment status available to Github, you'll be using the `deployment_status` event to trigger your action. This event is triggered when a deployment status changes, and you'll be using the `success` state to trigger your action.
Since Railway makes the deployment status available to GitHub, you'll be using the `deployment_status` event to trigger your action. This event is triggered when a deployment status changes, and you'll be using the `success` state to trigger your action.

Make a new file in your repository called `.github/workflows/post-deploy.yml` and add the following -

Expand Down
2 changes: 1 addition & 1 deletion content/guides/github-actions-pr-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tags:
topic: architecture
---

[Github Actions](https://github.com/features/actions) come with a pretty neat set of features to automate your workflows. This post talks about using Github Actions alongside the [Railway CLI](https://github.com/railwayapp/cli) to create specific environments for any PR that is created, alongside closing it whenever it is closed/merged.
[GitHub Actions](https://github.com/features/actions) come with a pretty neat set of features to automate your workflows. This post talks about using GitHub Actions alongside the [Railway CLI](https://github.com/railwayapp/cli) to create specific environments for any PR that is created, alongside closing it whenever it is closed/merged.

This can be useful if you need to create a branch on a [Neon](https://neon.tech) database, allowing you to automatically inject the correct database url.

Expand Down
2 changes: 1 addition & 1 deletion public/icons/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/icons/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const iconNames = [
"FileText",
"File",
"Folder",
"Github",
"GitHub",
"Home",
"InfoCircle",
"LinkSquare",
Expand Down
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Footer: React.FC<FooterProps> = ({
href={gitHubEditLink}
className="inline-flex items-center gap-2 text-sm text-muted-base hover:text-muted-high-contrast transition-colors"
>
<Icon name="Github" className="size-4" />
<Icon name="GitHub" className="size-4" />
<span>Edit this page on GitHub</span>
<Icon name="LinkSquare" className="size-4" />
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ const Home: NextPage = () => {
href="https://github.com/railwayapp/docs"
className="text-muted-base hover:text-muted-high-contrast transition-colors"
>
<Icon name="Github" className="size-4" />
<Icon name="GitHub" className="size-4" />
</Link>
</div>
<ThemeSwitcher />
Expand Down
Loading