Skip to content

Commit ffbbc8f

Browse files
committed
add gh-action for testing docker pull
1 parent 5639632 commit ffbbc8f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/docker-test.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Pull Docker Image
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- anmol/docker-test
8+
9+
jobs:
10+
docker-pull:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Set up Docker Buildx
17+
uses: docker/setup-buildx-action@v2
18+
19+
- name: Pull public Docker image
20+
run: docker pull ghcr.io/cosmology-tech/jsd:latest

0 commit comments

Comments
 (0)