mirror of
https://github.com/cryptomator/cryptomator.git
synced 2024-11-23 20:19:41 +00:00
attempt to fix release
This commit is contained in:
parent
32bd84d754
commit
3e6acb2561
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@ -241,10 +241,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: linux-appimage
|
name: linux-appimage
|
||||||
path: |
|
path: |
|
||||||
cryptomator-${{ needs.metadata.outputs.versionStr }}-x86_64.AppImage
|
cryptomator-*.AppImage
|
||||||
cryptomator-${{ needs.metadata.outputs.versionStr }}-x86_64.AppImage.asc
|
cryptomator-*.AppImage.zsync
|
||||||
cryptomator-${{ needs.metadata.outputs.versionStr }}-x86_64.AppImage.zsync
|
|
||||||
cryptomator-${{ needs.metadata.outputs.versionStr }}-x86_64.AppImage.zsync.asc
|
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -503,9 +501,10 @@ jobs:
|
|||||||
- name: Create detached GPG signature for all release files with key 615D449FE6E6A235
|
- name: Create detached GPG signature for all release files with key 615D449FE6E6A235
|
||||||
run: |
|
run: |
|
||||||
echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
|
echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
|
||||||
for FILE in `find . -name "*.appimage" -o -name "*.dmg" -o -name "*.msi" -o -name "*.zsync" -o -name "*.tar.gz"`; do
|
for FILE in `find . -name "*.AppImage" -o -name "*.dmg" -o -name "*.msi" -o -name "*.zsync" -o -name "*.tar.gz"`; do
|
||||||
echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a ${FILE}
|
echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a ${FILE}
|
||||||
done
|
done
|
||||||
|
ls -lR
|
||||||
env:
|
env:
|
||||||
GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
|
GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
|
||||||
GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
|
GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
|
||||||
@ -513,11 +512,11 @@ jobs:
|
|||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
fail_on_unmatched_files: true
|
fail_on_unmatched_files: false # TODO
|
||||||
discussion_category_name: Releases
|
discussion_category_name: Releases
|
||||||
token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
|
token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
|
||||||
files: |
|
files: |
|
||||||
*.appimage
|
*.AppImage
|
||||||
*.zsync
|
*.zsync
|
||||||
*.asc
|
*.asc
|
||||||
*.dmg
|
*.dmg
|
||||||
|
Loading…
Reference in New Issue
Block a user