Skip to content

Commit 87719ac

Browse files
authored
Merge pull request #18 from geoadmin/develop
#major New release to run service on kubernetes with images on ecr
2 parents b46ddc6 + 7f3faa4 commit 87719ac

33 files changed

+3677
-187
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Bump version
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- develop
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
with:
13+
fetch-depth: "10"
14+
# Details and Documentation
15+
# https://github.com/anothrNick/github-tag-action
16+
# https://github.com/geoadmin/doc-guidelines/blob/master/GIT_FLOW.md#versioning
17+
- name: Bump version and push tag
18+
uses: anothrNick/github-tag-action@1.33.0
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
WITH_V: true
22+
RELEASE_BRANCHES: master
23+
TAG_CONTEXT: repo

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ local/
4545

4646
#vim
4747
*.swp
48+
49+
#generated files
50+
.timestamps/
51+
tests/report

0 commit comments

Comments
 (0)