Skip to content

Commit cf81fc8

Browse files
Update migrating-from-gitlab-cicd-to-github-actions.md (#28780)
Co-authored-by: Siara <[email protected]>
1 parent 6c07ed5 commit cf81fc8

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

content/actions/migrating-to-github-actions/manually-migrating-to-github-actions/migrating-from-gitlab-cicd-to-github-actions.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ job1:
6060
6161
### {% data variables.product.prodname_actions %} syntax for jobs
6262
63-
{% raw %}
64-
6563
```yaml
6664
jobs:
6765
job1:
@@ -70,8 +68,6 @@ jobs:
7068
- run: echo "Run your script here"
7169
```
7270
73-
{% endraw %}
74-
7571
## Runners
7672
7773
Runners are machines on which the jobs run. Both GitLab CI/CD and {% data variables.product.prodname_actions %} offer managed and self-hosted variants of runners. In GitLab CI/CD, `tags` are used to run jobs on different platforms, while in {% data variables.product.prodname_actions %} it is done with the `runs-on` key.
@@ -343,8 +339,6 @@ artifacts:
343339

344340
### {% data variables.product.prodname_actions %} syntax for artifacts
345341

346-
{% raw %}
347-
348342
```yaml
349343
- name: Upload math result for job 1
350344
uses: {% data reusables.actions.action-upload-artifact %}
@@ -353,8 +347,6 @@ artifacts:
353347
path: math-homework.txt
354348
```
355349

356-
{% endraw %}
357-
358350
For more information, see "[AUTOTITLE](/actions/using-workflows/storing-workflow-data-as-artifacts)."
359351

360352
## Databases and service containers
@@ -396,8 +388,6 @@ container-job:
396388
397389
### {% data variables.product.prodname_actions %} syntax for databases and service containers
398390
399-
{% raw %}
400-
401391
```yaml
402392
jobs:
403393
container-job:
@@ -431,6 +421,4 @@ jobs:
431421
POSTGRES_PORT: 5432
432422
```
433423
434-
{% endraw %}
435-
436424
For more information, see "[AUTOTITLE](/actions/using-containerized-services/about-service-containers)."

0 commit comments

Comments
 (0)