Skip to content

Commit

Permalink
v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanClementsHax committed Dec 18, 2021
1 parent ee7ce3c commit 5496156
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/cache@v2
with:
path: ./**
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ github.sha }}
lint:
runs-on: ubuntu-latest
needs: checkout
Expand All @@ -31,7 +31,7 @@ jobs:
uses: actions/cache@v2
with:
path: ./**
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ github.sha }}
- run: yarn lint:all
test:
runs-on: ubuntu-latest
Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions/cache@v2
with:
path: ./**
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ github.sha }}
- run: yarn test
type_check:
name: type check
Expand All @@ -52,5 +52,5 @@ jobs:
uses: actions/cache@v2
with:
path: ./**
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ github.sha }}
- run: yarn type-check
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/cache@v2
with:
path: ./**
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ github.sha }}
publish:
runs-on: ubuntu-latest
needs: checkout
Expand All @@ -29,7 +29,7 @@ jobs:
uses: actions/cache@v2
with:
path: ./**
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ github.sha }}
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tailwindcss-themer",
"version": "0.0.3",
"version": "0.0.4",
"author": "ryanclementshax",
"license": "MIT",
"description": "A tailwindcss plugin to handle multiple themes for you automatically",
Expand Down

0 comments on commit 5496156

Please sign in to comment.