Skip to content

Commit

Permalink
Add new CSS files and components
Browse files Browse the repository at this point in the history
  • Loading branch information
Titou325 committed Jan 30, 2024
1 parent 3824539 commit e11f91a
Show file tree
Hide file tree
Showing 31 changed files with 2,413 additions and 3,193 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build and Publish

on:
push:
branches:
- main

jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: ./package-lock.json
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm run build
- run: npm version patch -m "Bump version to %s [skip ci]"
- run: npm publish --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Bump version [skip ci]"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ yarn-error.log*
.env.development.local
.env.test.local
.env.production.local

dist
Loading

0 comments on commit e11f91a

Please sign in to comment.