mirror of
https://github.com/RetroDECK/Vita3K-bin.git
synced 2025-01-19 12:45:38 +00:00
Remove unnecessary assets environment variable assignment in fetch-release workflow
This commit is contained in:
parent
acb3690e65
commit
1d88e99275
3
.github/workflows/fetch-release.yml
vendored
3
.github/workflows/fetch-release.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
||||||
|
|
||||||
# fetching assets
|
# fetching assets
|
||||||
mkdir -p artifacts
|
mkdir -p artifacts
|
||||||
for url in "$(echo $latest_release | jq -r '.assets[] | .browser_download_url')"; do
|
for url in $(echo $latest_release | jq -r '.assets[] | .browser_download_url'); do
|
||||||
wget -P artifacts $url
|
wget -P artifacts $url
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -41,7 +41,6 @@ jobs:
|
||||||
|
|
||||||
echo "tag_name=$tag_name" >> $GITHUB_ENV
|
echo "tag_name=$tag_name" >> $GITHUB_ENV
|
||||||
echo "release_body=$release_body" >> $GITHUB_ENV
|
echo "release_body=$release_body" >> $GITHUB_ENV
|
||||||
echo "assets=$assets" >> $GITHUB_ENV
|
|
||||||
echo "release_name=$release_name" >> $GITHUB_ENV
|
echo "release_name=$release_name" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Create release in this repository
|
- name: Create release in this repository
|
||||||
|
|
Loading…
Reference in a new issue