Commit 01cfa511 authored by DJOUNANG NANA Guy Rostan's avatar DJOUNANG NANA Guy Rostan
Browse files

chore: delete unexpected ng_deploy folder

parent 52bea110
Loading
Loading
Loading
Loading

jobs/ng_deploy/README.md

deleted100644 → 0
+0 −28
Original line number Diff line number Diff line
## Objective

Deploy your Angular projects to any target (Firebase, Azure, GitHub pages, ...)

## How to use it

1. <Your steps>
1. Add this job URL inside the `include` list of your `.gitlab-ci.yml` file (see the [quick setup](/use-the-hub/#quick-setup)). You can specify [a fixed version](#changelog) instead of `latest`.
    ```yaml
      - remote: 'https://jobs.r2devops.io/latest/ng_deploy.yml'
    ```
1. If you need to customize the job (stage, variables, ...) 👉 check the [jobs
   customization](/use-the-hub/#jobs-customization)
1. Well done, your job is ready to work ! 😀

## Job details

* Job name: `ng_deploy`
* Docker image:
[`node:15.14-buster`](https://hub.docker.com/r/_/node)
* Default stage: `deploy`
* When: `always`

### Variables

| Name | Description | Default |
| ---- | ----------- | ------- |
| `VARIABLE` <img width=100/> | A general variable for this job <img width=175/>| `Hello R2` <img width=100/>|

jobs/ng_deploy/job.yml

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
name: ng_deploy
description: Deploy your Angular projects to any target (Firebase, Azure, GitHub pages, ...)
default_stage: deploy
icon: :brain:
maintainer: DjNaGuRo
license: MIT
images:
  node:15.14-buster
tools:
 No newline at end of file

jobs/ng_deploy/ng_deploy.yml

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
stages:
  - deploy

ng_deploy:
    image: node:15.14-buster
    stage: deploy
    variables:
      VARIABLE: "Hello R2"
    script:
      - echo "${VARIABLE}"
+0 −0

Empty file deleted.

jobs/ng_deploy/versions/0.1.0.md

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
* Initial version
 No newline at end of file