Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
adds build with version
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenzo Setale <[email protected]>
  • Loading branch information
koalalorenzo committed Oct 12, 2020
1 parent 997c123 commit 5cf07e1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
15 changes: 13 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,26 @@ build:master:
expire_in: 6 mos
only:
- master
except:
- tags

build:tags:
variables:
VERSION: $CI_COMMIT_TAG
extends: .buildbase
artifacts:
paths:
- build
only:
- tags

publish:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
script:
- echo "Running a new release"
dependencies:
- build:master
- build:tags
artifacts:
paths:
- build
Expand All @@ -60,7 +72,6 @@ publish:
tag_name: '$CI_COMMIT_TAG'
ref: '$CI_COMMIT_TAG'
description: See CHANGELOG.md
milestones: ["$CI_COMMIT_TAG"]
only:
- tags

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ backpack run ./nginx-0.1.0.backpack -v ./values.yaml

Unpack, customize or Run a backpack **from an URL**:
```shell
backpack unpack https://gitlab.com/Qm64/backpack/-/raw/master/test_files/redis.backpack
backpack run https://gitlab.com/Qm64/backpack/-/raw/master/test_files/redis.backpack -f values
backpack unpack https://backpack.qm64.tech/examples/redis-6.0.0.backpack
backpack run https://backpack.qm64.tech/examples/redis-6.0.0.backpack -f values
```

**Get Help** and learn more for each command
Expand Down

0 comments on commit 5cf07e1

Please sign in to comment.