Skip to content

Commit

Permalink
We have removed the deprecated `::set-output from our CI pipeline a…
Browse files Browse the repository at this point in the history
…nd replaced it with the usage of `GITHUB_ENV`.
  • Loading branch information
MohitMaliDeveloper committed Nov 10, 2023
1 parent a09b2ff commit 54d91ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ jobs:
run: |
BUNDLE_PATH="kiwix-android/custom/build/outputs/bundle/${TAG}Release/*${TAG}*.aab"
BUNDLE_NAME="${TAG^}DummyBundle.aab"
echo "::set-output name=bundle_path::$BUNDLE_PATH"
echo "::set-output name=bundle_name::$BUNDLE_NAME"
echo "bundle_path=$BUNDLE_PATH" >> $GITHUB_ENV
echo "bundle_name=$BUNDLE_NAME" >> $GITHUB_ENV
- name: Upload Bundle as an artifact
uses: actions/upload-artifact@v2
with:
name: ${{ steps.bundle-path.outputs.bundle_name }}
path: ${{ steps.bundle-path.outputs.bundle_path }}
name: ${{ env.bundle_name }}
path: ${{ env.bundle_path }}

0 comments on commit 54d91ec

Please sign in to comment.