Skip to content

Commit 424bb62

Browse files
committed
v1.4.1
1 parent d28883f commit 424bb62

File tree

2 files changed

+5
-33
lines changed

2 files changed

+5
-33
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,14 @@ on:
88
jobs:
99
publish:
1010
runs-on: ubuntu-latest
11-
12-
strategy:
13-
matrix:
14-
node-version: [12]
15-
1611
steps:
1712
- uses: actions/checkout@v2
18-
19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v2
13+
- uses: actions/setup-node@v2
2114
with:
22-
node-version: ${{ matrix.node-version }}
15+
node-version: '12.x'
2316
registry-url: 'https://registry.npmjs.org'
2417
scope: '@mertasan'
25-
26-
- name: Use cached node_modules
27-
id: cache-publish
28-
uses: actions/cache@v2
29-
with:
30-
path: node_modules
31-
key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}-publish
32-
restore-keys: |
33-
nodeModules-
34-
- name: Install dependencies
35-
if: steps.cache-publish.outputs.cache-hit != 'true'
36-
run: npm install
37-
env:
38-
CI: true
39-
40-
- name: Test
41-
run: npm run test
42-
env:
43-
CI: true
44-
45-
- name: Publish
46-
run: npm publish
18+
- run: npm install
19+
- run: npm publish
4720
env:
48-
CI: true
4921
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mertasan/tailwindcss-variables",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "Easily create css variables without the need for a css file!",
55
"main": "src/index.js",
66
"license": "GPL-3.0-or-later",

0 commit comments

Comments
 (0)