Skip to content

Commit

Permalink
Fix faulty access of output + bump to kick off build
Browse files Browse the repository at this point in the history
  • Loading branch information
leow93 committed May 1, 2020
1 parent 883266b commit 9177ee1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy core
if: steps.check.outputs.core-version-change.changed == 'true'
if: steps.core-version-change.outputs.changed == 'true'
run: |
cd core
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build and deploy native
if: steps.check.outputs.native-version-change.changed == 'true'
if: steps.native-version-change.outputs.changed == 'true'
run: |
cd native
yarn install
Expand Down
2 changes: 1 addition & 1 deletion native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@birdiecare/galette-native",
"version": "1.0.2",
"version": "1.0.3",
"scripts": {
"release": "npm run build && npm publish",
"test": "jest",
Expand Down

0 comments on commit 9177ee1

Please sign in to comment.