Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display deployed commit sha on footer #2571

Merged
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
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:
CLOUDFLARE_R2_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }}
CLOUDFLARE_R2_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }}
REALM_GRAPHQL_API_KEY: ${{ secrets.REALM_GRAPHQL_API_KEY }}
GATSBY_COMMIT_SHA: ${{ inputs.sha }}

- name: Upload to netlify
id: deploy-netlify
Expand Down
4 changes: 4 additions & 0 deletions site/gatsby-site/src/components/layout/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@
</div>
</div>
)}

{process.env.GATSBY_COMMIT_SHA && (
<div className="text-muted-gray text-xs">{process.env.GATSBY_COMMIT_SHA}</div>

Check warning on line 297 in site/gatsby-site/src/components/layout/Footer.js

View check run for this annotation

Codecov / codecov/patch

site/gatsby-site/src/components/layout/Footer.js#L297

Added line #L297 was not covered by tests
)}
</footer>
);
}