diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7bb26b..a09a078 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Installing dependencies run: npm ci - - name: Build + - name: Build package run: npm run build -- --filter=svelte-reveal # - name: Testing diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a346f80..a063011 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,12 +22,14 @@ jobs: with: node-version: 20 cache: 'npm' - cache-dependency-path: 'package-lock.json' - name: Installing dependencies run: npm ci - - name: Building package + - name: Build package + run: npm run build -- --filter=svelte-reveal + + - name: Pack build artifacts run: npm run pack -- --filter=svelte-reveal - name: Publish to NPM diff --git a/packages/svelte-reveal/CHANGELOG.md b/packages/svelte-reveal/CHANGELOG.md index b53a060..e08439e 100644 --- a/packages/svelte-reveal/CHANGELOG.md +++ b/packages/svelte-reveal/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.4] - 2024-04-05 + +### Fixed + +- Resolved release workflow misconfiguration + ## [1.0.3] - 2024-04-04 ### Fixed @@ -194,3 +200,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.0.1]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.0...1.0.1 [1.0.2]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.1...1.0.2 [1.0.3]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.2...1.0.3 +[1.0.4]: https://github.com/DaveKeehl/svelte-reveal/compare/1.0.3...1.0.4 diff --git a/packages/svelte-reveal/package.json b/packages/svelte-reveal/package.json index 6a8c713..c46a6b8 100644 --- a/packages/svelte-reveal/package.json +++ b/packages/svelte-reveal/package.json @@ -1,6 +1,6 @@ { "name": "svelte-reveal", - "version": "1.0.3", + "version": "1.0.4", "description": "Svelte action that leverages the Intersection Observer API to trigger reveal on scroll transitions", "type": "module", "main": "dist/index.cjs",