Skip to content

Commit

Permalink
add step for generating env
Browse files Browse the repository at this point in the history
  • Loading branch information
Raghuboi committed Mar 29, 2024
1 parent 521b6c9 commit 0eabc22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 22 deletions.
17 changes: 0 additions & 17 deletions .env.production

This file was deleted.

12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
- name: Create .env file
uses: SpicyPizza/[email protected]
with:
cosign-release: "v2.1.1"
envkey_NODE_ENV: "production"
envkey_NEXT_PUBLIC_RESUME_URL: ${{ secrets.RESUME_URL }}
directory: .
file_name: .env.production
fail_on_empty: false
sort_keys: false

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/app/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ interface Props {}
const Page: React.FC<Props> = () => {
return (
<div className="h-[40rem] w-full flex justify-center items-center overflow-hidden px-[3rem]">
<h1>Coming soon!!!</h1>
<h1>Coming Soon!</h1>
</div>
);
};
Expand Down

0 comments on commit 0eabc22

Please sign in to comment.