We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38c8b9 commit e6b66bdCopy full SHA for e6b66bd
.github/workflows/docker-publish.yaml
@@ -0,0 +1,22 @@
1
+name: Docker
2
+
3
+# This workflow uses actions that are not certified by GitHub.
4
+# They are provided by a third-party and are governed by
5
+# separate terms of service, privacy policy, and support
6
+# documentation.
7
8
+on:
9
+ workflow_dispatch:
10
+ push:
11
+ branches: [ "main" ]
12
+ tags: ["*"]
13
14
+jobs:
15
+ call-docker-build:
16
+ uses: ethdevops/workflows/.github/workflows/upstream-docker-build.yaml@main
17
+ with:
18
+ repository: safe-global/safe-wallet-monorepo
19
+ ref: ${{ github.ref }}
20
+ secrets:
21
+ docker_registry_user: ${{ secrets.DOCKER_REGISTRY_USER }}
22
+ docker_registry_password: ${{ secrets.DOCKER_REGISTRY_SECRET }}
0 commit comments