Skip to content

Commit

Permalink
Merge pull request #13 from Todilo/Fix_build_pipeline
Browse files Browse the repository at this point in the history
Fix build pipeline
  • Loading branch information
Todilo authored Dec 28, 2023
2 parents 785ab09 + 8cb4d03 commit 44dbbfb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/storybookdeployergithubpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install and Build 🔧
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- run: |
# This needs an Acces Token stored as "GH_TOKEN" 👇
run: |
npm install --legacy-peer-deps
npm run deploy-storybook -- --ci
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
},
"dependencies": {
"@types/react": "^18.2.46",
"styled-components": "^5.3.5",
"styled-components": "^6.1.6",
"typescript": "^5.3.3"
},
"eslintConfig": {
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import postcss from "rollup-plugin-postcss";
import ts from "rollup-plugin-ts";
import { terser } from "rollup-plugin-terser";
import terser from '@rollup/plugin-terser';

const packageJson = require("./package.json");

Expand Down

0 comments on commit 44dbbfb

Please sign in to comment.