summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-07-22 21:50:30 +0100
committerGitHub <noreply@github.com>2021-07-22 21:50:30 +0100
commit4c3fdfc808a90b4ba049695e97cbf3e6cc21873e (patch)
tree38628c39e5c8038980766771103490431959d970
parent 1.39.0rc2 (diff)
downloadsynapse-4c3fdfc808a90b4ba049695e97cbf3e6cc21873e.tar.xz
Fix an error in the docker workflow (#10461)
-rw-r--r--.github/workflows/docker.yml2
-rw-r--r--changelog.d/10461.misc1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 8bdefb3905..af7ed21fce 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -54,7 +54,7 @@ jobs:
         # we do an amd64-only build, before following up with a multiarch build.
       - name: Build and push amd64
         uses: docker/build-push-action@v2
-        if: "${{ startsWith(github.ref, 'refs/tags/v' }}"
+        if: "${{ startsWith(github.ref, 'refs/tags/v') }}"
         with:
           push: true
           labels: "gitsha1=${{ github.sha }}"
diff --git a/changelog.d/10461.misc b/changelog.d/10461.misc
new file mode 100644
index 0000000000..5035e26825
--- /dev/null
+++ b/changelog.d/10461.misc
@@ -0,0 +1 @@
+Fix an error which prevented the Github Actions workflow to build the docker images from running.