-
Notifications
You must be signed in to change notification settings - Fork 12
68 lines (63 loc) · 2.38 KB
/
release.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Create new release
on:
push:
tags:
- v**
jobs:
publish-release:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
name: Publish release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare zip files
run: ./.tools/prepare_release_zip.sh
- name: Create release
uses: softprops/action-gh-release@v1
with:
# create a draft release which needs manual approval
draft: true
files: |
python-basics.zip
python-hello-world.zip
python-patterns-use-cases.zip
python-tour-of-restate.zip
python-food-ordering.zip
python-rag-ingestion.zip
java-basics.zip
java-food-ordering.zip
java-subway-fare-calculator.zip
java-patterns-use-cases.zip
java-hello-world-gradle.zip
java-hello-world-maven.zip
java-hello-world-maven-spring-boot.zip
java-hello-world-maven-quarkus.zip
java-tour-of-restate.zip
kotlin-basics.zip
kotlin-food-ordering.zip
kotlin-kmp-android-todo-app.zip
kotlin-hello-world-lambda-cdk.zip
kotlin-patterns-use-cases.zip
kotlin-hello-world-gradle.zip
typescript-basics.zip
typescript-food-ordering.zip
typescript-chat-bot.zip
typescript-ai-image-workflows.zip
typescript-hello-world-lambda-cdk.zip
typescript-patterns-use-cases.zip
typescript-hello-world.zip
typescript-bun-hello-world.zip
typescript-cloudflare-worker-hello-world.zip
typescript-deno-hello-world.zip
typescript-tour-of-restate.zip
go-basics.zip
go-hello-world-lambda-cdk.zip
go-knative-go.zip
go-patterns-use-cases.zip
go-hello-world.zip
go-tour-of-restate.zip
rust-basics.zip
rust-hello-world.zip
rust-shuttle-hello-world.zip
rust-tour-of-restate.zip