Skip to content

Commit f01249c

Browse files
committed
Update goreleaser to make it a prerelease
Signed-off-by: Matt Stratton <[email protected]>
1 parent 31887fc commit f01249c

File tree

5 files changed

+108
-2
lines changed

5 files changed

+108
-2
lines changed

.goreleaser.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ release:
44
owner: devopsdays
55
name: devopsdays-cli
66
draft: false
7+
prerelease: true
78
builds:
89
- goos:
910
- linux

model/event.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ type Event struct {
3232
SponsorLevels []SponsorLevel `yaml:"sponsor_levels"`
3333
}
3434

35-
//TODO: Does NavElement need to be exported?
35+
//@TODO: Does NavElement need to be exported?
3636

3737
// NavElement represents a navigation element for the event
3838
type NavElement struct {
3939
Name string `yaml:"name"`
4040
}
4141

42-
//TODO: Does EventSponsor need to be exported?
42+
//@TODO: Does EventSponsor need to be exported?
4343

4444
// EventSponsor represents a sponsor for an event.
4545
type EventSponsor struct {
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
+++
2+
Title = "Apple Jack"
3+
type = "speaker"
4+
5+
twitter = "applejack"
6+
7+
8+
9+
10+
11+
+++
12+
Apple Jack is awesome.
13+
14+
so is *markdown*
15+
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
name: "2018-canterlot" # The name of the event. Four digit year with the city name in lower-case, with no spaces.
2+
year: "2018" # The year of the event. Make sure it is in quotes.
3+
city: "Canterlot" # The displayed city name of the event. Capitalize it.
4+
event_twitter: "canterlot" # Change this to the twitter handle for your event such as devopsdayschi or devopsdaysmsp
5+
description: "Devopsdays is coming to Canterlot!" # Edit this to suit your preferences
6+
ga_tracking_id: "" # If you have your own Google Analytics tracking ID, enter it here. Example: "UA-74738648-1"
7+
8+
# All dates are in unquoted YYYY-MM-DD, like this: variable: 2016-01-05
9+
startdate: # The start date of your event. Leave blank if you don't have a venue reserved yet.
10+
enddate: # The end date of your event. Leave blank if you don't have a venue reserved yet.
11+
12+
# Leave CFP dates blank if you don't know yet, or set all three at once.
13+
cfp_date_start: # start accepting talk proposals.
14+
cfp_date_end: # close your call for proposals.
15+
cfp_date_announce: # inform proposers of status
16+
17+
cfp_open: ""
18+
cfp_link: "" #if you have a custom link for submitting proposals, add it here. This will control the Propose menu item as well as the "Propose" button.
19+
20+
registration_date_start: # start accepting registration. Leave blank if registration is not open yet
21+
registration_date_end: # close registration. Leave blank if registration is not open yet.
22+
23+
registration_closed: "" # set this to true if you need to manually close registration before your registration end date
24+
registration_link: "" # If you have a custom registration link, enter it here. This will control the Registration menu item as well as the "Register" button.
25+
26+
masthead_background: ""
27+
28+
# Location
29+
#
30+
coordinates: "" # The coordinates of your city. Get Latitude and Longitude of a Point: http://itouchmap.com/latlong.html
31+
location: "" # Defaults to city, but you can make it the venue name.
32+
#
33+
location_address: "" #Optional - use the street address of your venue. This will show up on the welcome page if set.
34+
35+
nav_elements: # List of pages you want to show up in the navigation of your page.
36+
# - name: propose
37+
# - name: location
38+
# - name: registration
39+
# - name: program
40+
# - name: speakers
41+
- name: sponsor
42+
- name: contact
43+
- name: conduct
44+
# - name: example
45+
# icon: "map-o" # This is a font-awesome icon that will display on small screens. Choose at http://fontawesome.io/icons/
46+
# url: http://mycfp.com # The url setting is optional, and only if you want the navigation to link off-site
47+
48+
49+
# These are the same people you have on the mailing list and Slack channel.
50+
team_members: # Name is the only required field for team members.
51+
- name: "John Doe"
52+
- name: "Jane Smith"
53+
twitter: "devopsdays"
54+
- name: "Sally Fields"
55+
employer: "Acme Anvil Co."
56+
github: "devopsdays"
57+
facebook: "https://www.facebook.com/sally.fields"
58+
linkedin: "https://www.linkedin.com/in/sallyfields"
59+
website: "https://mattstratton.com"
60+
image: "sally-fields.jpg"
61+
organizer_email: "[email protected]" # Put your organizer email address here
62+
proposal_email: "[email protected]" # Put your proposal email address here
63+
64+
# List all of your sponsors here along with what level of sponsorship they have.
65+
# Check data/sponsors/ to use sponsors already added by others.
66+
sponsors:
67+
- id: samplesponsorname
68+
level: gold
69+
# url: http://mysponsor.com/?campaign=me # Use this if you need to over-ride a sponsor URL.
70+
- id: arresteddevops
71+
level: community
72+
73+
sponsors_accepted : "" # Whether you want "Become a XXX Sponsor!" link
74+
75+
# In this section, list the level of sponsorships and the label to use.
76+
# You may optionally include a "max" attribute to limit the number of sponsors per level. For
77+
# unlimited sponsors, omit the max attribute or set it to 0. If you want to prevent all
78+
# sponsorship for a specific level, it is best to remove the level.
79+
sponsor_levels:
80+
- id: gold
81+
label: Gold
82+
# max: 10
83+
- id: silver
84+
label: Silver
85+
max: 0 # This is the same as omitting the max limit.
86+
- id: bronze
87+
label: Bronze
88+
- id: community
89+
label: Community
90+
615 KB
Loading

0 commit comments

Comments
 (0)