Compare commits
5 Commits
unreleased
...
v1.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c6c1ac249 | ||
|
|
0ddfac57f7 | ||
|
|
9fbd750cd2 | ||
|
|
5fc2027cfa | ||
|
|
2d39476c65 |
6
.github/workflows/base_image_workflow.yaml
vendored
6
.github/workflows/base_image_workflow.yaml
vendored
@@ -70,8 +70,10 @@ jobs:
|
||||
flavor: |
|
||||
latest=auto
|
||||
tags: |
|
||||
type=edge,branch=master,commit=${{ github.sha }}
|
||||
type=ref,event=tag
|
||||
type=ref,event=pr
|
||||
type=sha,commit=${{ github.sha }}
|
||||
type=semver,pattern={{version}}
|
||||
type=raw,value=latest,enable={{is_default_branch}}
|
||||
|
||||
- name: Build image for scanning
|
||||
@@ -130,7 +132,7 @@ jobs:
|
||||
sarif_file: 'trivy-results-os.sarif'
|
||||
|
||||
- name: Push Service Image to repo
|
||||
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
|
||||
# if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ${{ needs.set-vars.outputs.CONTEXT }}
|
||||
|
||||
3
.github/workflows/build_addon.yaml
vendored
3
.github/workflows/build_addon.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/node/addon/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
3
.github/workflows/build_consumer.yaml
vendored
3
.github/workflows/build_consumer.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/node/consumer/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
3
.github/workflows/build_jackett-addon.yaml
vendored
3
.github/workflows/build_jackett-addon.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/node/addon-jackett/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
3
.github/workflows/build_metadata.yaml
vendored
3
.github/workflows/build_metadata.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/metadata/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
3
.github/workflows/build_migrator.yaml
vendored
3
.github/workflows/build_migrator.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/migrator/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
3
.github/workflows/build_producer.yaml
vendored
3
.github/workflows/build_producer.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/producer/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
3
.github/workflows/build_tissue.yaml
vendored
3
.github/workflows/build_tissue.yaml
vendored
@@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/tissue/**'
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
process:
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
|
||||
## Contents
|
||||
|
||||
> [!CAUTION]
|
||||
> Until we reach `v1.0.0`, please consider releases as alpha.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> The latest change renames the project and requires a [small migration](#selfhostio-to-knightcrawler-migration).
|
||||
- [Contents](#contents)
|
||||
|
||||
@@ -82,7 +82,7 @@ services:
|
||||
- knightcrawler-network
|
||||
|
||||
producer:
|
||||
image: gabisonfire/knightcrawler-producer:latest
|
||||
image: gabisonfire/knightcrawler-producer:1.0.1
|
||||
labels:
|
||||
logging: "promtail"
|
||||
env_file: .env
|
||||
@@ -91,7 +91,7 @@ services:
|
||||
- knightcrawler-network
|
||||
|
||||
consumer:
|
||||
image: gabisonfire/knightcrawler-consumer:latest
|
||||
image: gabisonfire/knightcrawler-consumer:1.0.1
|
||||
env_file: .env
|
||||
labels:
|
||||
logging: "promtail"
|
||||
@@ -102,7 +102,7 @@ services:
|
||||
- knightcrawler-network
|
||||
|
||||
metadata:
|
||||
image: gabisonfire/knightcrawler-metadata:latest
|
||||
image: gabisonfire/knightcrawler-metadata:1.0.1
|
||||
env_file: .env
|
||||
labels:
|
||||
logging: "promtail"
|
||||
@@ -114,7 +114,7 @@ services:
|
||||
<<: *knightcrawler-app
|
||||
env_file: .env
|
||||
hostname: knightcrawler-addon
|
||||
image: gabisonfire/knightcrawler-addon:latest
|
||||
image: gabisonfire/knightcrawler-addon:1.0.1
|
||||
labels:
|
||||
logging: "promtail"
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user