Skip to content

Commit

Permalink
Workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveKeehl committed Apr 5, 2024
1 parent f01a1d0 commit 08b3435
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/debugging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Debugging
on: [push]

jobs:
CI:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -20,16 +20,21 @@ jobs:
- name: Installing dependencies
run: npm ci

- run: pwd
- run: ls -l
- run: cd ./packages/svelte-reveal && ls -l
- run: pwd && ls -l
- name: Build package
run: npm run build -- --filter=svelte-reveal

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

- name: Upload artifact
uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4
with:
name: my-artifact
path: svelte-reveal-*.tgz
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

0 comments on commit 08b3435

Please sign in to comment.