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
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ jobs:
27
27
## Summary
28
28
29
29
Each workflow file has a number of jobs, which get run `on` specified events,
30
-
and run concurrently with each other. You can have workflow [status badges](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/adding-a-workflow-status-badge).
30
+
and run concurrently with each other. You can have workflow [status badges](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/monitoring-workflows/adding-a-workflow-status-badge).
31
31
32
32
Each `job` runs on a configuration `matrix`. For example, we can test two major
33
33
Go versions on three operating systems.
@@ -42,7 +42,7 @@ Note that `name` fields are optional.
#### How do I set environment variables at run-time?
56
56
57
-
You can use [environment files](https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files)
57
+
You can use [environment files](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#environment-files)
58
58
to set environment variables or add an element to `$PATH`. For example:
59
59
60
60
```yaml
@@ -83,13 +83,13 @@ custom caching, for example to only keep `GOMODCACHE`:
83
83
${{ runner.os }}-go-
84
84
```
85
85
86
-
See [this guide](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows)
86
+
See [this guide](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows)
87
87
for more details.
88
88
89
89
#### How do I run a step conditionally?
90
90
91
91
You can use `if` conditionals, using their [custom expression
[provided by GitHub](https://docs.github.com/en/enterprise-cloud@latest/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow)
142
+
[provided by GitHub](https://docs.github.com/en/enterprise-cloud@latest/actions/security-for-github-actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow)
143
143
in the workflow.
144
144
You can define anything as username in the URL, it is not taken into account by GitHub.
145
145
@@ -168,11 +168,11 @@ Use `sudo apt`, making sure to only run the step on Linux:
0 commit comments