Skip to content

Commit

Permalink
Strip non-base characters while pasting
Browse files Browse the repository at this point in the history
  • Loading branch information
kuchta committed Nov 24, 2023
1 parent 9255bbd commit e1842ea
Show file tree
Hide file tree
Showing 10 changed files with 9,006 additions and 8,555 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,38 @@ concurrency:
cancel-in-progress: true

jobs:
# Deploy to the github-pages environment
deploy:
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
# Specify runner + deployment steps
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './dist'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action
Loading

0 comments on commit e1842ea

Please sign in to comment.