Skip to content

Commit

Permalink
fix: deployment + move to actionsv3
Browse files Browse the repository at this point in the history
  • Loading branch information
ndungtse committed Aug 1, 2023
1 parent f4950bd commit 39a0b29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
Expand Down
2 changes: 2 additions & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

.vercel
3 changes: 2 additions & 1 deletion example/src/components/NavBar.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
'use client';
import React from 'react';
import Link from 'next/link';
import { useRouter } from '../../../dist';
// import { useRouter } from '../../../dist';
import { useRouter } from 'next13-progressbar';

const NavBar = () => {
const router = useRouter();
Expand Down

0 comments on commit 39a0b29

Please sign in to comment.