We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b255f commit b53b6fcCopy full SHA for b53b6fc
1 file changed
.github/workflows/release.desktop.yaml
@@ -1,8 +1,8 @@
1
name: release-desktop
2
3
on:
4
- release:
5
- types: [created] # will be triggered when a NON-draft release is created and published.
+ release:
+ types: [created]
6
7
permissions:
8
contents: write
@@ -13,13 +13,13 @@ jobs:
13
strategy:
14
matrix:
15
os: [macos, ubuntu, windows]
16
- fail-fast: false # So publish runs for other OSes if one fails
+ fail-fast: false
17
runs-on: ${{ matrix.os }}-latest
18
steps:
19
- name: Checkout code
20
uses: actions/checkout@v4
21
with:
22
- ref: master
+ ref: ${{ github.event.release.tag_name }}
23
fetch-depth: 0
24
25
- name: Setup Node.js
0 commit comments