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

Feature #42

Merged
merged 40 commits into from
Jun 20, 2024
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
3d7a341
Created a dummy header component
Jun 2, 2024
dfc4ed4
Added CSS
IMISSHER99 Jun 4, 2024
6b7f5f6
Created github action
IMISSHER99 Jun 4, 2024
af30c11
Added on click to the function to change styles for other component
IMISSHER99 Jun 5, 2024
1ed6f21
Changed Order lets see if push works now
IMISSHER99 Jun 5, 2024
b95715f
Added Responsive styles
IMISSHER99 Jun 6, 2024
339c8a7
Added Mobile Icons
IMISSHER99 Jun 6, 2024
82baf75
added Navigation Dropdown component
IMISSHER99 Jun 6, 2024
ae2201d
Changed Font added Navigation Drodown
IMISSHER99 Jun 7, 2024
b40583c
Added Drizzle configs, creted .env file. pulled the data from the dat…
IMISSHER99 Jun 8, 2024
7155424
Addded Menu and website page
IMISSHER99 Jun 10, 2024
2499719
Implementing Dropdown in the early stages still not complete yet
IMISSHER99 Jun 13, 2024
7bb8706
Dropdown partially completed
IMISSHER99 Jun 15, 2024
e9d5907
Added Permissions
IMISSHER99 Jun 15, 2024
e6b3a9a
Added Worflow Run Functionality
IMISSHER99 Jun 15, 2024
148e4d3
ADDED PREMISSION FOR WRITING
IMISSHER99 Jun 15, 2024
5f7a294
Added Permissions (#23)
IMISSHER99 Jun 15, 2024
33cda30
Updated Dependencies
IMISSHER99 Jun 17, 2024
403dfef
Added Comments
IMISSHER99 Jun 17, 2024
df82cf5
Removed On Push run
IMISSHER99 Jun 17, 2024
1e7c3f2
Updated Dropdown component and also added filters
IMISSHER99 Jun 19, 2024
4febd6e
Updated Filter Component
IMISSHER99 Jun 19, 2024
e74f9d0
Created Github action to push image to artifcatory. Testing if authen…
IMISSHER99 Jun 19, 2024
5d71554
Merge branch 'develop' into feature
IMISSHER99 Jun 19, 2024
c5e9331
Authentication works, checking if setup and cli works
IMISSHER99 Jun 19, 2024
e8327dc
Merge branch 'develop' into feature
IMISSHER99 Jun 19, 2024
9fce907
Authentication successfully trying to push image to artifactory now
IMISSHER99 Jun 19, 2024
6672a0d
Merge branch 'develop' into feature
IMISSHER99 Jun 19, 2024
2c497a9
Updated Docker file
IMISSHER99 Jun 19, 2024
5d0df3f
Merge branch 'develop' into feature
IMISSHER99 Jun 20, 2024
5202369
Changed Working Directory
IMISSHER99 Jun 20, 2024
376a896
Changed Working Directory
IMISSHER99 Jun 20, 2024
0df32db
Merge branch 'develop' into feature
IMISSHER99 Jun 20, 2024
e5d5e13
Removed WOrking Directory
IMISSHER99 Jun 20, 2024
0128897
ADDED WORKING DIRECTORY
IMISSHER99 Jun 20, 2024
7d8ddaf
Merge branch 'develop' into feature
IMISSHER99 Jun 20, 2024
10a6e8e
Updated Directory
IMISSHER99 Jun 20, 2024
52026a2
Merge branch 'develop' into feature
IMISSHER99 Jun 20, 2024
e5235ec
Changed Docker image name
IMISSHER99 Jun 20, 2024
76c4ea1
Changed Docker image name
IMISSHER99 Jun 20, 2024
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
9 changes: 4 additions & 5 deletions .github/workflows/gcp_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
PROJECT_ID: awwwards-clone-project
REGION: asia-south1
REPOSITORY: asia-south1/docker.pkg.dev/awwwards-clone-project/awwwards-clone-repo/awwwards-clone
REPOSITORY: asia-south1-docker.pkg.dev/awwwards-clone-project/awwwards-clone-repo/awwwards-clone

jobs:
deploy_to_artifact_registry:
Expand All @@ -22,12 +22,12 @@ jobs:
# Install Dependencies for the application
- name: Install Dependencies
run: npm install
working-directory: ./Awwwards/Awwwards
working-directory: /home/runner/work/Awwwards/Awwwards

# Building the application
- name: Build Application
run: npm run build
working-directory: ./Awwwards/Awwwards
working-directory: /home/runner/work/Awwwards/Awwwards

# Authenticate with GCP
- name: Authenticate with GCP
Expand All @@ -52,8 +52,7 @@ jobs:

- name: Build image
run: docker build . --file Dockerfile --tag ${{ env.REPOSITORY }}
working-directory: ./Awwwards/Awwwards

working-directory: /home/runner/work/Awwwards/Awwwards


- name: Push image
Expand Down
Loading