You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,33 @@ steps:
58
58
run: swift --version
59
59
```
60
60
61
+
To request development snapshots, use one of these options:
62
+
63
+
**Main development snapshot (trunk)**
64
+
65
+
```yaml
66
+
swift-version: "main-snapshot-2024-08-01"
67
+
```
68
+
69
+
Or you can omit date to lookup for latest available snapshot (note that you may run into GitHub API limits,
70
+
which can be avoided if you specify API Token in your project settings)
71
+
72
+
```yaml
73
+
swift-version: "main-snapshot"
74
+
```
75
+
76
+
**Specific version development snapshot**
77
+
78
+
```yaml
79
+
swift-version: "5.7-snapshot-2022-08-30"
80
+
```
81
+
82
+
If date is ommited, it will lookup for the latest snapshot
83
+
84
+
```yaml
85
+
swift-version: "5.7-snapshot"
86
+
```
87
+
61
88
## Note about versions
62
89
63
90
This project uses strict semantic versioning to determine what version of Swift to configure. This differs slightly from the official convention used by Swift.
0 commit comments