Skip to content

Commit

Permalink
Add prepare step
Browse files Browse the repository at this point in the history
  • Loading branch information
markmur committed Jan 15, 2024
1 parent f3bd462 commit 635cb36
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish NPM Package

# on:
# release:
# types:
# - published
# workflow_dispatch:
on:
push:
pull_request:
types: [opened, synchronize]

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup
uses: ./.github/actions/setup

- name: Prepare release
run: |
cd modules/@shopify/checkout-sheet-kit
npm pack --dry-run

0 comments on commit 635cb36

Please sign in to comment.