diff options
author | Emiliano Ciavatta | 2021-07-28 18:34:21 +0000 |
---|---|---|
committer | Emiliano Ciavatta | 2021-07-28 19:04:02 +0000 |
commit | dded53f3450b41b358674ea41e9f078fb0d4391f (patch) | |
tree | e3408065cb736df3d77d15b7b5a83eed3ca219ef /.github/workflows | |
parent | 99cfe84c23f3beb8baf76b799ace1b3ffbf1d5ff (diff) |
Update workflows
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/deploy.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 38f302f..006e3e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,7 +5,7 @@ on: - published env: REGISTRY: ghcr.io - IMAGE_NAME: caronte + IMAGE_NAME: eciavatta/caronte jobs: build_push_docker: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95b44fc..0b5d5be 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,15 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - main + - develop + - feature/* + - release/* + - hotfix/* + tags-ignore: + - 1.* + pull_request: jobs: test_backend: name: Build and test backend |