Skip to content

Commit

Permalink
ci: replace set-env with env file (#148)
Browse files Browse the repository at this point in the history
GitHub actions has deprecated set-env, so replace it with env file
  • Loading branch information
Chesire authored Dec 22, 2020
1 parent c64e4cd commit d385889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Deploy
run: ./gradlew deploy -PbintrayUser=${{ secrets.BINTRAY_USER_ID }} -PbintrayKey=${{ secrets.BINTRAY_API_KEY }} -PpublishVersion=${{ $RELEASE_VERSION }}
run: ./gradlew deploy -PbintrayUser=${{ secrets.BINTRAY_USER_ID }} -PbintrayKey=${{ secrets.BINTRAY_API_KEY }} -PpublishVersion=$RELEASE_VERSION

0 comments on commit d385889

Please sign in to comment.