Skip to content

Commit a53d852

Browse files
Main simplify release (#95)
* get full git history first * remove deprecated auth warning * use pnpm publish instead of npm * @instructure.ai/[email protected] * lint * @instructure.ai/[email protected] * Update .github/workflows/release-package.yml Co-authored-by: Copilot <[email protected]> * Update .github/workflows/release-package.yml Co-authored-by: Copilot <[email protected]> * update build script * properly invoke custom build script * simplify release script * exit early when no change in ./apps * easier PR prefix validation * use fetch-depth: 0 * robust git dif * use proper exit codes * use conditional yaml * @instructure.ai/[email protected] * don't force push tags * @instructure.ai/[email protected] * use workflow_run as trigger. * @instructure.ai/[email protected] * gh requirestoken. * @instructure.ai/[email protected] * shared-configs has no bundle * @instructure.ai/[email protected] --------- Co-authored-by: Copilot <[email protected]>
1 parent 66a994d commit a53d852

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/release-package.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,11 @@ jobs:
7474
fi
7575
7676
# Create GitHub release using gh CLI
77-
gh release create "$TAG" ./dist/*.tgz --title "Release $TAG" --notes "Automated release of $TAG"
77+
if [ "$PKG_NAME" = "shared-configs" ]; then
78+
gh release create "$TAG" --title "Release $TAG" --notes "Automated release of $TAG"
79+
else
80+
gh release create "$TAG" ./dist/*.tgz --title "Release $TAG" --notes "Automated release of $TAG"
81+
fi
7882
done
7983
env:
8084
tags: ${{ env.tags }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"vitest": "^3.2.4",
1818
"yaml": "^2.8.1"
1919
},
20-
"version": "1.1.8",
20+
"version": "1.1.9",
2121
"name": "@instructure.ai/shared-configs",
2222
"packageManager": "[email protected]",
2323
"private": true,

0 commit comments

Comments
 (0)