DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 4882bac13b657d25d0bbfb8cbc7307c8ea870ca7 felu/.build.yml -rw-r--r-- 756 bytes
4882bac1Jonni Liljamo fix: a possible flaw to delete domains owned by others 10 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
image: alpine/edge
packages:
  - docker
sources:
  - https://git.src.quest/~skye/felu
environment:
  project: felu
secrets:
  - ef58262b-f72b-460f-b417-42aed24fc67e
tasks:
  - checks: |
      cd $project
      if (echo "$(git describe --tag)" | grep -v -Eq "^[0-9]+[.][0-9]+[.][0-9]+$"); then complete-build; fi
  - setup: |
      sudo rc-service docker start
      sudo addgroup $(whoami) docker
  - build: |
      cd $project
      export VERSION=$(git describe --tags)
      docker build -t liljamo/"$project":"$VERSION" . --build-arg VERSION="$VERSION"
  - push: |
      cd $project
      export VERSION=$(git describe --tags)
      docker login --username liljamo --password-stdin < ~/.docker-hub-token
      docker push liljamo/"$project":"$VERSION"