Skip to content

Commit

Permalink
Add calendly link
Browse files Browse the repository at this point in the history
  • Loading branch information
lxchurbakov committed Jan 31, 2024
1 parent a43eb4d commit 346afa2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm install
- name: Generate README file
run: node index.js
run: npm start
# env:
# OPEN_WEATHER_MAP_KEY: ${{secrets.OPEN_WEATHER_MAP_KEY}}
- name: Push new readme.md
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,16 @@ const fetchLichessRating = async (keys = ['blitz', 'rapid', 'puzzle']) => {
role: 'Fullstack JS/TS developer',
experience_years: 'более чем 8',
lichessRating, lichessLink: LICHESS_CHALLENGE_LINK,
tgUserName: 'lxchurbakov',
calendlyLink: 'https://calendly.com/lxch/job-interview',
}, {});

const dirname = path.parse(outputPath).dir;

await makeDir(dirname).catch(() => null);
await writeFile(outputPath, content);

await writeFile(dirname + '/diem.js', 'console.log("it works")')
// await writeFile(dirname + '/peeve.js', 'console.log("it works")')
})().catch((err) => {
console.log(err);
process.exit(-1);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"start": "node index.js"
},
"author": "",
"license": "ISC",
Expand Down
6 changes: 5 additions & 1 deletion template.ejs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Всем привет!

Меня зовут <%= name %>, я <%= role %> с <%= experience_years %> годами опыта.
Меня зовут <%= name %>, я <%= role %> с <%= experience_years %> годами опыта.

## Работа

Сейчас я нахожусь в поиске работы, пишите мне в телеграм [@<%= tgUserName %>](https://t.me/<%= tgUserName %>) или забукайте интервью [тут](<%= calendlyLink %>)

## Мои интересы

Expand Down

0 comments on commit 346afa2

Please sign in to comment.