Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI - Attempt to fix ChangeSet release workflow #5

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/great-spiders-invent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

- name: 🗂️ Get pnpm store directory
shell: bash
run: |

Check failure on line 30 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:50: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/release.yml:30:9: shellcheck reported issue in this script: SC2086:info:1:50: Double quote to prevent globbing and word splitting [shellcheck]
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- name: 🛠️ Set up Node.js
Expand All @@ -51,3 +51,8 @@
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: "pnpm run changeset:version"
commit: "chore(🦋): update versions"
title: "chore(🦋): Update Package Version"
createGithubReleases: true
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@
"url": "https://wwww.suddenlygiovanni.dev"
},
"scripts": {
"format": "biome format .",
"format:write": "pnpm format --write",
"changeset:add": "pnpm exec changeset add",
"changeset:empty": "pnpm exec changeset --empty",
"changeset:publish": "pnpm exec changeset publish",
"changeset:version": "pnpm exec changeset version",
"changeset:publish": "pnpm exec changeset publish"
"format": "biome format .",
"format:write": "pnpm format --write"
},
"license": "UNLICENSED",
"devDependencies": {
Expand Down
Loading