Skip to content

Commit

Permalink
ios: fix Invalid workflow file (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
s1rius authored Dec 26, 2023
1 parent f0ef16b commit 321aca5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:

- name: Get last tag
run: |
git fetch --tags
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
echo "Latest git tag: $LATEST_TAG"
git fetch --tags
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
echo "Latest git tag: $LATEST_TAG"
- name: Zip
working-directory: ./ios
Expand Down

0 comments on commit 321aca5

Please sign in to comment.