You've already forked go-semantic-release
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f89150b698 | ||
|
|
780a6dbc2e | ||
|
|
2d7977993b |
@@ -1,9 +1,9 @@
|
|||||||
FROM alpine:3.10.2
|
FROM alpine:3.14
|
||||||
|
|
||||||
WORKDIR /code
|
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
|
USER 1000
|
||||||
|
|
||||||
ENTRYPOINT [ "./go-semantic-release.linux_x86_64" ]
|
ENTRYPOINT [ "go-semantic-release" ]
|
||||||
|
|||||||
@@ -128,6 +128,8 @@ gitlab:
|
|||||||
tagPrefix: ""
|
tagPrefix: ""
|
||||||
```
|
```
|
||||||
|
|
||||||
|
You can find an example `.gitlab-ci.yml` in the [examples](examples/.gitlab-ci.yml) folder.
|
||||||
|
|
||||||
##### Git only
|
##### Git only
|
||||||
|
|
||||||
Only via https at the moment. You need write access to your git repository
|
Only via https at the moment. You need write access to your git repository
|
||||||
|
|||||||
11
examples/.gitlab-ci.yml
Normal file
11
examples/.gitlab-ci.yml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
stages:
|
||||||
|
- release
|
||||||
|
|
||||||
|
release:
|
||||||
|
stage: release
|
||||||
|
image:
|
||||||
|
name: nightapes/go-semantic-release:latest
|
||||||
|
script:
|
||||||
|
- go-semantic-release next
|
||||||
|
only:
|
||||||
|
- master
|
||||||
Reference in New Issue
Block a user