Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
remove staging dockerfile, add configureation steps to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgraham4401 committed Sep 30, 2023
1 parent 7fb82ee commit 81387fa
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-gcp-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Configure Dev image
if: ${{ inputs.environment == 'development' }}
run: |
cp config/.env.staging .env
- name: Configure Prod image
if: ${{ inputs.environment == 'production' }}
run: |
cp config/.env.production .env
- name: Docker meta
uses: docker/metadata-action@v4
id: meta
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/build-ghcr-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Configure Dev image
run: |
cp config/.env.staging .env
- name: Configure Prod image
if: ${{ inputs.environment == 'production' }}
run: |
cp config/.env.production .env
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
Expand Down
17 changes: 0 additions & 17 deletions Dockerfile.staging

This file was deleted.

File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion src/features/Resume/Resume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const fabStyle = {
* @constructor
*/
export function Resume() {
// ToDo - Add a way to download PDF resume
useTitle("Resume");
return (
<Box p={2}>
Expand Down

0 comments on commit 81387fa

Please sign in to comment.