Compare commits

...

3 Commits

3 changed files with 16 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
FROM alpine:3.10.2
FROM alpine:3.14
WORKDIR /code
COPY ./build/go-semantic-release.linux_x86_64 .
COPY ./build/go-semantic-release.linux_x86_64 /usr/local/bin/go-semantic-release
USER 1000
ENTRYPOINT [ "./go-semantic-release.linux_x86_64" ]
ENTRYPOINT [ "go-semantic-release" ]

View File

@@ -128,6 +128,8 @@ gitlab:
tagPrefix: ""
```
You can find an example `.gitlab-ci.yml` in the [examples](examples/.gitlab-ci.yml) folder.
##### Git only
Only via https at the moment. You need write access to your git repository

11
examples/.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,11 @@
stages:
- release
release:
stage: release
image:
name: nightapes/go-semantic-release:latest
script:
- go-semantic-release next
only:
- master