Skip to content

Commit 6861131

Browse files
committed
fixed
1 parent 79f5ba3 commit 6861131

File tree

2 files changed

+32
-19
lines changed

2 files changed

+32
-19
lines changed

.github/workflows/deploy.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,22 @@ on:
55
branches:
66
- main
77

8+
permissions:
9+
contents: write
10+
pages: write
11+
id-token: write
12+
813
jobs:
914
build:
1015
name: Build
1116
runs-on: ubuntu-latest
1217

1318
steps:
1419
- name: Checkout repo
15-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
1621

1722
- name: Setup Node
18-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
1924

2025
- name: Install dependencies
2126
uses: bahmutov/npm-install@v1
@@ -24,7 +29,7 @@ jobs:
2429
run: npm run build
2530

2631
- name: Upload production-ready build files
27-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
2833
with:
2934
name: production-files
3035
path: ./dist
@@ -37,13 +42,19 @@ jobs:
3742

3843
steps:
3944
- name: Download artifact
40-
uses: actions/download-artifact@v3
45+
uses: actions/download-artifact@v4
4146
with:
4247
name: production-files
4348
path: ./dist
4449

4550
- name: Deploy to GitHub Pages
46-
uses: peaceiris/actions-gh-pages@v3
51+
uses: peaceiris/actions-gh-pages@v4
4752
with:
4853
github_token: ${{ secrets.GITHUB_TOKEN }}
49-
publish_dir: ./dist
54+
publish_dir: ./dist
55+
56+
Push the commit or tag
57+
/usr/bin/git push origin gh-pages
58+
remote: Permission to IsaacNguyen/isaacnguyen.github.io.git denied to github-actions[bot].
59+
fatal: unable to access 'https://github.com/IsaacNguyen/isaacnguyen.github.io.git/': The requested URL returned error: 403
60+
Error: Action failed with "The process '/usr/bin/git' failed with exit code 128"

src/Experience.tsx

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,14 @@ function Experience() {
2020
</div>
2121
<div className='flex flex-col gap-8 w-full'>
2222

23-
<ExperienceTab
24-
logo={atomaLogo}
25-
image={atoma}
26-
role="Software Engineer Intern"
27-
name="Atoma Media"
28-
description="Developing an end-to-end website for a finance startup that uses AI to gather information about financial articles to democratize financial information."
29-
timeframe="July 2024 - Present"
30-
link = 'https://www.joinatoma.com/'
31-
rounded={false}
32-
/>
23+
3324

3425
<ExperienceTab
3526
logo={ctcLogo}
3627
image={ctc}
3728
role="Full-Stack Developer"
3829
name="Commit the Change"
39-
description="Producing a digital case management tool to improve efficiency of aiding homeless women/children for a nonprofit organization called Colette&apos;s Children Home."
30+
description="Producing a digital case management tool to improve efficiency of aiding 7,000+ homeless women/children for a nonprofit organization called Colette&apos;s Children Home."
4031
timeframe="October 2024 - Present"
4132
link = 'https://ctc-uci.com/'
4233
rounded={false}
@@ -45,9 +36,9 @@ function Experience() {
4536
<ExperienceTab
4637
logo={icsscLogo}
4738
image={antalmanac}
48-
role="Software Developer"
39+
role="Software Development Engineer"
4940
name="AntAlmanac - ICSSC Projects Committee"
50-
description="Contributing to the open source, student-run project named AntAlmanac, a schedule planning and course exploration tool for UCI students."
41+
description="Contributing to the open source, student-run project named AntAlmanac, a schedule planning and course exploration tool for 8,000+ UCI students."
5142
timeframe="November 2024 - Present"
5243
link = 'https://antalmanac.com/'
5344
rounded={true}
@@ -64,6 +55,17 @@ function Experience() {
6455
rounded={true}
6556
/>
6657

58+
<ExperienceTab
59+
logo={atomaLogo}
60+
image={atoma}
61+
role="Software Engineering Intern"
62+
name="Atoma Media"
63+
description="Developing an end-to-end website for a finance startup that uses AI to gather information about financial articles to democratize financial information."
64+
timeframe="July 2024 - February 2025"
65+
link = 'https://www.joinatoma.com/'
66+
rounded={false}
67+
/>
68+
6769
</div>
6870
</div>
6971

0 commit comments

Comments
 (0)