Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit bc7578b

Browse files
authored
Add docker workflow (#107)
1 parent a4570d3 commit bc7578b

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/docker.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build docker image
2+
3+
on: workflow_dispatch
4+
5+
jobs:
6+
docker:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Set up QEMU
10+
uses: docker/setup-qemu-action@v2
11+
12+
- name: Set up Docker Buildx
13+
uses: docker/setup-buildx-action@v2
14+
15+
- name: Login to Docker Hub
16+
uses: docker/login-action@v2
17+
with:
18+
username: ${{ secrets.DOCKERHUB_USERNAME }}
19+
password: ${{ secrets.DOCKERHUB_TOKEN }}
20+
21+
- name: Build and push
22+
uses: docker/build-push-action@v4
23+
with:
24+
push: true
25+
tags: stackupwallet/stackup-bundler:latest

0 commit comments

Comments
 (0)