Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolnsX authored May 22, 2024
1 parent 8565c4d commit f1ae3ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
id: check_apks
run: |
if ls *.apk 1> /dev/null 2>&1;then
echo "apks_exist='true'" >> "$GITHUB_OUTPUT"
echo "apks_exist=true" >> "$GITHUB_OUTPUT"
echo "RELEASE_TAG=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
else
echo "apks_exist='false'" >> "$GITHUB_OUTPUT"
echo "apks_exist=false" >> "$GITHUB_OUTPUT"
fi
- name: Upload binaries to release
if: steps.check_apks.outputs.apks_exist == 'true'
if: steps.check_apks.outputs.apks_exist
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f1ae3ec

Please sign in to comment.