Skip to content

Commit 6ef3ced

Browse files
authored
Merge pull request #44 from rameel/fix-publish-workflow
Fix variable expansion in publish workflow
2 parents 580e62a + a97fa1d commit 6ef3ced

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
- name: Publish packages
3535
run: |
3636
for dir in dist/*; do
37-
if [ -d '$dir' ]; then
38-
cd '$dir'
37+
if [ -d "$dir" ]; then
38+
cd "$dir"
3939
npm publish --access public
4040
cd - > /dev/null
4141
fi

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ramstack/alpinegear.js",
33
"type": "module",
44
"version": "1.2.4",
5-
"description": "@ramstack/alpinegear.js provides additional Alpine.js directives, magic functions, and utilities to enhance developer productivity.",
5+
"description": "@ramstack/alpinegear.js provides additional Alpine.js directives, magic functions, and utilities to enhance developer productivity",
66
"author": "Rameel Burhan",
77
"license": "MIT",
88
"repository": {

0 commit comments

Comments
 (0)