-
Notifications
You must be signed in to change notification settings - Fork 18
34 lines (28 loc) · 828 Bytes
/
release.yml
File metadata and controls
34 lines (28 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Create Release
on:
push:
tags:
- 'v*.*.*'
jobs:
create-artifact:
uses: ./.github/workflows/create-distribution-artifact.yml
with:
upload-artifact: true
create-release:
needs: create-artifact
runs-on: windows-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v7
with:
name: actor-framework-distribution
path: artifact-staging
- name: Create actor-framework-distribution.zip
shell: pwsh
run: |
Compress-Archive -Path artifact-staging\* -DestinationPath actor-framework-distribution.zip
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: actor-framework-distribution.zip
generate_release_notes: true