Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveKeehl committed Apr 5, 2024
1 parent 08b3435 commit bf493ca
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,25 @@ jobs:
- name: Installing dependencies
run: npm ci

- name: Build
- name: Build package
run: npm run build -- --filter=svelte-reveal

- name: Pack build artifacts
run: npm run pack -- --filter=svelte-reveal

- uses: actions/upload-artifact@v4
with:
name: my-artifact
path: ./packages/svelte-reveal/svelte-reveal-*.tgz

- name: Publish to NPM
id: publish
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/svelte-reveal/package.json
dry-run: true

# - name: Testing
# run: npm run test

Expand Down

0 comments on commit bf493ca

Please sign in to comment.