Skip to content

Commit

Permalink
fix: workflow secrets and content text
Browse files Browse the repository at this point in the history
  • Loading branch information
purr-purr committed Feb 27, 2024
1 parent 1eadf2f commit 863c029
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ jobs:
name: out
path: out
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Download artifact
uses: actions/download-artifact@main
with:
name: out
path: out
- name: Sync files to hosting
uses: SamKirkland/[email protected]
with:
server: ${{ sectets.FTP_SERVER }}
username: ${{ sectets.FTP_USERNAME }}
password: ${{ sectets.FTP_PASSWORD }}
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Download artifact
uses: actions/download-artifact@main
with:
name: out
path: out
- name: Sync files to hosting
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}

4 changes: 2 additions & 2 deletions src/utils/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const messages = {
HELLO: 'Hello',
POSTER: 'Project Poster',
USERNAME: '${userName}',
IM_A_FRONT_END_DEVELOPER: "I’m a passionate frontend developer",
IM_A_FRONT_END_DEVELOPER: "I’m a passionate frontend engineer",
WITH_A_SOLID_THREE_YEARS_IN_THE_INDUSTRY:
'with a solid three years in the industry.',
'with a solid four years in the industry.',
MY_PASSION: 'My passion? Crafting sleek, cutting-edge web interfaces.',
LETS_TEAM_UP:
"Let’s team up and turn our digital dreams into reality.",
Expand Down

0 comments on commit 863c029

Please sign in to comment.