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
#### How do I set environment variables at run-time?
62
62
63
-
You can use [workflow commands](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#environment-files)
63
+
You can use [workflow commands](https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#environment-files)
64
64
to set environment variables or add an element to `$PATH`. For example:
65
65
66
66
```yaml
@@ -109,13 +109,13 @@ You can also include Go's build cache, to improve incremental builds:
109
109
110
110
This is demonstrated via the `test-cache` job [in this very repository](https://github.com/mvdan/github-actions-golang/actions).
111
111
112
-
See [this guide](https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows)
112
+
See [this guide](https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows)
113
113
for more details.
114
114
115
115
#### How do I run a step conditionally?
116
116
117
117
You can use `if` conditionals, using their [custom expression
0 commit comments