Skip to content

Commit 2deea38

Browse files
authored
Merge branch 'main' into update/readme
2 parents e636039 + d029157 commit 2deea38

File tree

4 files changed

+19
-22
lines changed

4 files changed

+19
-22
lines changed

.github/workflows/alpha-publish.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ jobs:
1616
with:
1717
ref: "main"
1818

19+
- name: Docker metadata
20+
id: meta
21+
uses: docker/[email protected]
22+
with:
23+
images: ${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion
24+
tags: |
25+
type=raw,value=alpha
26+
1927
- name: Set up Docker Buildx
2028
uses: docker/[email protected]
2129

@@ -26,17 +34,6 @@ jobs:
2634
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
2735
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
2836

29-
- name: Docker metadata
30-
id: meta
31-
uses: docker/[email protected]
32-
with:
33-
images: ${{ secrets.DOCKER_REGISTRY_URL }}/hyperion
34-
tags: |
35-
type=raw,value=alpha
36-
labels: |
37-
preprod.environment=${{ github.event.inputs.preprod_env }}
38-
preprod.branch=${{ github.event.inputs.branch }}
39-
4037
- name: Build and push preprod image
4138
uses: docker/[email protected]
4239
with:
@@ -46,6 +43,6 @@ jobs:
4643
tags: ${{ steps.meta.outputs.tags }}
4744
labels: ${{ steps.meta.outputs.labels }}
4845
cache-from: |
49-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:latest
50-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:alpha
51-
cache-to: type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/${{ github.repository }}/cache,mode=max
46+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:alpha
47+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:latest
48+
cache-to: type=inline

.github/workflows/preprod-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
tags: ${{ steps.meta.outputs.tags }}
6666
labels: ${{ steps.meta.outputs.labels }}
6767
cache-from: |
68-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:${{ github.event.inputs.preprod_env }}
69-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:alpha
70-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:latest
71-
cache-to: type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/${{ github.repository }}/cache,mode=max
68+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:${{ github.event.inputs.preprod_env }}
69+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:alpha
70+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:latest
71+
cache-to: type=inline

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
tags: ${{ steps.meta.outputs.tags }}
4444
labels: ${{ steps.meta.outputs.labels }}
4545
cache-from: |
46-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:alpha
47-
type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/hyperion:latest
48-
cache-to: type=registry,ref=${{ secrets.DOCKER_REGISTRY_URL }}/${{ github.repository }}/cache,mode=max
46+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:alpha
47+
type=registry,ref=${{ secrets.DOCKER_REGISTRY_IDENTIFER }}/hyperion:latest
48+
cache-to: type=inline

requirements-common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ aiofiles==24.1.0 # Asynchronous file manipulation
22
alembic==1.13.2 # database migrations
33
arq==0.26.3 # Scheduler
44
asyncpg==0.29.0 # PostgreSQL adapter for *asynchronous* operations
5-
authlib==1.6.4
5+
authlib==1.6.5
66
bcrypt==4.1.3 # password hashing
77
boto3==1.38.23
88
broadcaster==0.3.1 # Working with websockets with multiple workers.

0 commit comments

Comments
 (0)