Skip to content

Commit 4f3927e

Browse files
committed
Drop release workflow to keep it manual
1 parent 9571fae commit 4f3927e

1 file changed

Lines changed: 0 additions & 26 deletions

File tree

.github/workflows/build.yaml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -679,29 +679,3 @@ jobs:
679679
name: stack_wallet-flatpak-x86_64-${{ steps.ver.outputs.version }}
680680
path: stack_wallet-linux-x86_64-${{ steps.ver.outputs.version }}.flatpak
681681

682-
release:
683-
if: github.ref_type == 'tag'
684-
needs: [build-linux, build-android, build-windows, build-macos, build-ios, build-flatpak, build-campfire-linux, build-stack-duo-linux]
685-
runs-on: ubuntu-latest
686-
permissions:
687-
contents: write
688-
steps:
689-
- uses: actions/download-artifact@v4
690-
with:
691-
path: artifacts
692-
693-
- name: Package artifacts
694-
run: |
695-
mkdir -p release-files
696-
for dir in artifacts/stack_wallet-windows-*/; do
697-
[ -d "$dir" ] || continue
698-
name=$(basename "$dir")
699-
(cd "$dir" && zip -r "../../release-files/${name}.zip" .)
700-
done
701-
find artifacts/ \( -name "*.tar.gz" -o -name "*.zip" -o -name "*.ipa" -o -name "*.flatpak" \) -mindepth 2 -exec mv {} release-files/ \;
702-
find artifacts/ -name "*.apk" -mindepth 2 -exec mv {} release-files/ \;
703-
704-
- uses: softprops/action-gh-release@v2
705-
with:
706-
generate_release_notes: true
707-
files: release-files/*

0 commit comments

Comments
 (0)