Skip to content

Commit

Permalink
#9: replaced deprecated ::set-output name
Browse files Browse the repository at this point in the history
  • Loading branch information
arburk committed Jan 7, 2024
1 parent 63abf8f commit b401daf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
echo "Do perform instrumented tests"
pr_exists_or_main_branch=1
fi
echo "::set-output name=pr_exists_or_main_branch::$pr_exists_or_main_branch"
echo "pr_exists_or_main_branch=$pr_exists_or_main_branch"
echo "pr_exists_or_main_branch=$pr_exists_or_main_branch" >> "$GITHUB_OUTPUT"
- name: checkout source
uses: actions/checkout@v4
Expand Down Expand Up @@ -78,11 +79,6 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew jacocoTestReport sonar

upload-results:
needs: build
if: ${{ always() }} # Not requiring successful build job, e.g. instrumentation failed, upload unit tests at least
runs-on: ubuntu-latest # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
steps:
- name: Upload test results
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit b401daf

Please sign in to comment.