Skip to content

Commit

Permalink
Another dir exists guard
Browse files Browse the repository at this point in the history
  • Loading branch information
octol committed Jan 23, 2025
1 parent fabf263 commit 2a518bd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish-nym-vpn-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,12 @@ jobs:
cat ${ARCHIVE_ANDROID}.tar.gz.sha256sum >> $GITHUB_ENV || true
cat ${ARCHIVE_IOS}.zip.sha256sum >> $GITHUB_ENV || true
cat ${ARCHIVE_WINDOWS}.zip.sha256sum >> $GITHUB_ENV || true
pushd ${{ env.UPLOAD_DIR_DEB }}
for deb_sha256 in nym-vpn*_amd64.deb.sha256sum; do
cat ${deb_sha256} >> $GITHUB_ENV || true
done
if [[ -d ${{ env.UPLOAD_DIR_DEB }} ]]; then
pushd ${{ env.UPLOAD_DIR_DEB }}
for deb_sha256 in nym-vpn*_amd64.deb.sha256sum; do
cat ${deb_sha256} >> $GITHUB_ENV || true
done
fi
echo 'EOF' >> $GITHUB_ENV
- name: Setting subject, prerelease and notes files
Expand Down

0 comments on commit 2a518bd

Please sign in to comment.