Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmith committed Aug 17, 2021
1 parent 076cbed commit 714f5bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@ jobs:
- id: android_changes
with:
glob: android/**
uses: jsmith/changes-since-last-tag@v1
uses: jsmith/changes-since-last-tag@v0.3.3

- id: ios_changes
with:
glob: ios/**
uses: jsmith/changes-since-last-tag@v1
uses: jsmith/changes-since-last-tag@v0.3.3

# The == 'true' is important since we can only output strings
# If you forgot this, the build will always run... I think
- if: steps.android_changes.outputs.any_changes == 'true'
- if: steps.android_changes.outputs.any_changed == 'true'
run: make android # just an example command

# Same as above except for ios
- if: steps.ios_changes.outputs.any_changes == 'true'
- if: steps.ios_changes.outputs.any_changed == 'true'
run: make ios

# This is an alternative method where this action just once
Expand Down

0 comments on commit 714f5bc

Please sign in to comment.