mirror of
https://github.com/kiwix/kiwix-android-custom.git
synced 2025-09-30 16:30:24 -04:00
We have removed the deprecated `::set-output
from our CI pipeline and replaced it with the usage of GITHUB_ENV
.
This commit is contained in:
parent
a09b2ffdb3
commit
54d91ec99f
8
.github/workflows/publish.yml
vendored
8
.github/workflows/publish.yml
vendored
@ -90,11 +90,11 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
BUNDLE_PATH="kiwix-android/custom/build/outputs/bundle/${TAG}Release/*${TAG}*.aab"
|
BUNDLE_PATH="kiwix-android/custom/build/outputs/bundle/${TAG}Release/*${TAG}*.aab"
|
||||||
BUNDLE_NAME="${TAG^}DummyBundle.aab"
|
BUNDLE_NAME="${TAG^}DummyBundle.aab"
|
||||||
echo "::set-output name=bundle_path::$BUNDLE_PATH"
|
echo "bundle_path=$BUNDLE_PATH" >> $GITHUB_ENV
|
||||||
echo "::set-output name=bundle_name::$BUNDLE_NAME"
|
echo "bundle_name=$BUNDLE_NAME" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload Bundle as an artifact
|
- name: Upload Bundle as an artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.bundle-path.outputs.bundle_name }}
|
name: ${{ env.bundle_name }}
|
||||||
path: ${{ steps.bundle-path.outputs.bundle_path }}
|
path: ${{ env.bundle_path }}
|
Loading…
x
Reference in New Issue
Block a user