Skip to content

Commit

Permalink
Add prepare step
Browse files Browse the repository at this point in the history
  • Loading branch information
markmur committed Dec 4, 2023
1 parent 6ce8c70 commit a6d384a
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:
push:
branches: ['main']
# drop this before merging
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: Install Dependencies
run: yarn

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

0 comments on commit a6d384a

Please sign in to comment.