chore,ci(bootstrap_archives): do not use deprecated set-output

See
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
Yaksh Bariya 2022-12-27 15:53:24 +05:30
parent 649348a619
commit 3759c26c84
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ jobs:
checksums="${checksums//'%'/'%25'}"
checksums="${checksums//$'\n'/'%0A'}"
checksums="${checksums//$'\r'/'%0D'}"
echo "::set-output name=checksums::$checksums"
echo "checksums=$checksums" >> $GITHUB_OUTPUT
- name: Create new tag
id: get_tag
run: |
@ -70,7 +70,7 @@ jobs:
new_tag="${new_tag}-r${tag_rev}+apt-android-7"
git tag "$new_tag"
git push --tags
echo "::set-output name=tag_name::$new_tag"
echo "tag_name=$new_tag" >> $GITHUB_OUTPUT
- name: Publish bootstrap zips to GitHub release
uses: termux/upload-release-action@v3.0.3
with: