Skip to content

Commit

Permalink
Remove version requirements in deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
marian42 committed Feb 10, 2024
1 parent f3392de commit e0b6326
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
uses: actions/setup-node

- name: Install TypeScript
run: npm install -g typescript
Expand All @@ -25,7 +23,7 @@ jobs:
run: tsc

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
Expand Down

0 comments on commit e0b6326

Please sign in to comment.