Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jgraph/drawio-desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benson <david@draw.io>2021-11-09 20:48:14 +0300
committerDavid Benson <david@draw.io>2021-11-09 20:48:14 +0300
commitaa6d2876446b5911d39b8a9f5bb327b94a2d6fa6 (patch)
tree80ee95e5991f8cfa28d8884ac2951ccdffc932a8
parent4a5a3b20d35f20666174fd4efe912fcecd212589 (diff)
parent8d646aca148d0c89d078236c505317ed9daaf18c (diff)
Merge branch 'dev' into release
-rw-r--r--.github/stale.yml4
-rw-r--r--.github/workflows/hash-gen.yml24
-rw-r--r--electron-builder-linux-mac.json3
3 files changed, 28 insertions, 3 deletions
diff --git a/.github/stale.yml b/.github/stale.yml
index fa2abc9..0fa4fa3 100644
--- a/.github/stale.yml
+++ b/.github/stale.yml
@@ -1,7 +1,7 @@
# Number of days of inactivity before an issue becomes stale
-daysUntilStale: 180
+daysUntilStale: 300
# Number of days of inactivity before a stale issue is closed
-daysUntilClose: 7
+daysUntilClose: 20
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
diff --git a/.github/workflows/hash-gen.yml b/.github/workflows/hash-gen.yml
new file mode 100644
index 0000000..1b80fcf
--- /dev/null
+++ b/.github/workflows/hash-gen.yml
@@ -0,0 +1,24 @@
+name: Generate sha256 hashes for release files
+
+on:
+ release:
+ types: [published]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Generate Hashes
+ uses: MCJack123/ghaction-generate-release-hashes@v1
+ with:
+ hash-type: sha256
+ file-name: hashes.txt
+ - name: Upload Hashes to release
+ uses: svenstaro/upload-release-action@v2
+ with:
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
+ file: hashes.txt
+ overwrite: true
+ asset_name: Files-SHA256-Hashes.txt
+ tag: ${{ github.ref }}
+
diff --git a/electron-builder-linux-mac.json b/electron-builder-linux-mac.json
index 71508f9..5d98fcc 100644
--- a/electron-builder-linux-mac.json
+++ b/electron-builder-linux-mac.json
@@ -29,7 +29,8 @@
},
{ "target": "dmg", "arch": [
"x64",
- "arm64"
+ "arm64",
+ "universal"
]
}
]