File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 6
6
# Build/Release on demand
7
7
workflow_dispatch :
8
8
inputs :
9
- is_snapshot_release :
10
- description : " Publish Release: "
9
+ is_prerelease :
10
+ description : " Pre-release? "
11
11
required : false
12
12
default : false
13
13
type : boolean
@@ -26,11 +26,11 @@ jobs:
26
26
tests :
27
27
uses : ./.github/workflows/tests.yaml
28
28
29
- release-snapshot :
29
+ prerelease :
30
30
runs-on : ubuntu-latest
31
31
environment : release
32
32
needs : tests
33
- if : ${{ inputs.is_snapshot_release || github.event.schedule }}
33
+ if : ${{ inputs.is_prerelease || github.event.schedule }}
34
34
steps :
35
35
- name : Checkout source code
36
36
uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -36,35 +36,35 @@ announce:
36
36
discord :
37
37
# Whether its enabled or not.
38
38
# Defaults to false.
39
- enabled : true
39
+ enabled : false
40
40
41
41
# Message template to use while publishing.
42
42
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}`
43
43
message_template : |
44
44
**New Release: Devbox {{.Tag}}**
45
45
We just released a version {{.Tag}} of `devbox`.
46
-
46
+
47
47
Description:
48
48
{{.TagBody}}
49
-
49
+
50
50
Release: {{.ReleaseURL}}
51
-
51
+
52
52
Updating:
53
53
If you installed devbox via our recommended installer
54
54
(`curl -fsSL https://get.jetpack.io/devbox | bash`) you will get the new version
55
55
_automatically_, the next time you run `devbox`
56
-
56
+
57
57
Thanks,
58
58
jetpack.io
59
59
60
60
# Set author of the embed.
61
61
# Defaults to `GoReleaser`
62
- author : ' jetpack.io'
62
+ author : " jetpack.io"
63
63
64
64
# Color code of the embed. You have to use decimal numeral system, not hexadecimal.
65
65
# Defaults to `3888754` - the grey-ish from goreleaser
66
- color : ' 2622553' # This is the Jetpack Space color
66
+ color : " 2622553" # This is the Jetpack Space color
67
67
68
68
# URL to an image to use as the icon for the embed.
69
69
# Defaults to `https://goreleaser.com/static/avatar.png`
70
- icon_url : ' '
70
+ icon_url : " "
You can’t perform that action at this time.
0 commit comments