Skip to content
This repository has been archived by the owner on Sep 23, 2021. It is now read-only.
/ gitlab-ci-yml Public archive

A collection of GitLab CI configuration files that are used by my projects.

License

Notifications You must be signed in to change notification settings

jrbeverly/gitlab-ci-yml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gitlab-ci.yml

A collection of GitLab CI configuration files that are used by my projects. Stored here as the process of docker projects are polished and standardized.

Getting Started

Each of the dockerfiles is presented with a simple .gitlab-ci.yml file that uses one of my docker images. The resources referenced by the definition are not included in this project. You can start by copying the .gitlab-cy.yml, then replacing the relevant bits.

stages:
  - build

build:
  stage: build
  image: jrbeverly/minify:baseimage
  script:
    - minify -o index-min.html index.html
  only:
    - master
  artifacts:
    paths:
      - public/
    expire_in: 1 hour

Acknowledgements

The project icon is retrieved from the Noun Project. The original source material has been altered for the purposes of the project. The icon is used under the terms of the Public Domain.

The project icon is by Icons8 from the Noun Project.

About

A collection of GitLab CI configuration files that are used by my projects.

Topics

Resources

License

Stars

Watchers

Forks