Skip to content

Commit 969f1f5

Browse files
authored
Bug fix for data resuables tags (#44931)
1 parent 08f5fae commit 969f1f5

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

content/actions/migrating-to-github-actions/manually-migrating-to-github-actions/migrating-from-circleci-to-github-actions.md

-8
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,6 @@ Below is an example in CircleCI and {% data variables.product.prodname_actions %
143143
144144
### GitHub Actions syntax for persisting data between jobs
145145
146-
{% raw %}
147-
148146
```yaml
149147
- name: Upload math result for job 1
150148
uses: {% data reusables.actions.action-upload-artifact %}
@@ -160,8 +158,6 @@ Below is an example in CircleCI and {% data variables.product.prodname_actions %
160158
name: homework
161159
```
162160
163-
{% endraw %}
164-
165161
For more information, see "[AUTOTITLE](/actions/using-workflows/storing-workflow-data-as-artifacts)."
166162
167163
## Using databases and service containers
@@ -231,8 +227,6 @@ workflows:
231227

232228
### GitHub Actions syntax for using databases and service containers
233229

234-
{% raw %}
235-
236230
```yaml
237231
name: Containers
238232
@@ -278,8 +272,6 @@ jobs:
278272
run: bundle exec rake
279273
```
280274

281-
{% endraw %}
282-
283275
For more information, see "[AUTOTITLE](/actions/using-containerized-services/about-service-containers)."
284276

285277
## Complete Example

content/actions/migrating-to-github-actions/manually-migrating-to-github-actions/migrating-from-travis-ci-to-github-actions.md

-8
Original file line numberDiff line numberDiff line change
@@ -146,16 +146,12 @@ git:
146146
147147
#### {% data variables.product.prodname_actions %} syntax for checking out submodules
148148
149-
{% raw %}
150-
151149
```yaml
152150
- uses: {% data reusables.actions.action-checkout %}
153151
with:
154152
submodules: false
155153
```
156154
157-
{% endraw %}
158-
159155
### Using environment variables in a matrix
160156
161157
Travis CI and {% data variables.product.prodname_actions %} can both add custom variables to a test matrix, which allows you to refer to the variable in a later step.
@@ -259,8 +255,6 @@ script:
259255

260256
### {% data variables.product.prodname_actions %} syntax for steps and actions
261257

262-
{% raw %}
263-
264258
```yaml
265259
jobs:
266260
run_python:
@@ -273,8 +267,6 @@ jobs:
273267
- run: python script.py
274268
```
275269

276-
{% endraw %}
277-
278270
## Caching dependencies
279271

280272
Travis CI and {% data variables.product.prodname_actions %} let you manually cache dependencies for later reuse.

0 commit comments

Comments
 (0)