Compare commits

..

1 Commits

Author SHA1 Message Date
GitHub Actions b6c944e449 add generate new tls host cert
Build and Push Docker Container / build-and-push (push) Failing after 26s
2026-03-11 15:53:40 +01:00
5 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -3,7 +3,6 @@ on:
push: push:
branches: branches:
- main - main
workflow_dispatch:
jobs: jobs:
build-and-push: build-and-push:
@@ -33,7 +32,7 @@ jobs:
- name: Build and push Docker image - name: Build and push Docker image
uses: docker/build-push-action@v7 uses: docker/build-push-action@v7
with: with:
context: . context: ./build
push: true push: true
tags: | tags: |
${{ vars.DOCKER_REGISTRY_URL }}/${{ env.REPO_OWNER_LC }}/protonmail-bridge:latest ${{ vars.DOCKER_REGISTRY_URL }}/${{ env.REPO_OWNER_LC }}/protonmail-bridge:latest
+1 -1
View File
@@ -1 +1 @@
v3.25.0 v3.22.0
+1 -1
View File
@@ -32,7 +32,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Copy bash scripts # Copy bash scripts
COPY gpgparams entrypoint.sh /protonmail/ COPY gpgparams entrypoint.sh /protonmail/
COPY scripts/generate_new_certs.sh /root/generate_new_certs.sh COPY generate_new_certs.sh /root/generate_new_certs.sh
WORKDIR /protonmail/ WORKDIR /protonmail/
# Copy protonmail # Copy protonmail
View File