Skip to content
This repository was archived by the owner on Mar 31, 2022. It is now read-only.

Commit 8b10781

Browse files
authored
(#43) Add the Publish Docker workflow.
1 parent 2bd8268 commit 8b10781

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish Docker
2+
3+
on:
4+
push:
5+
branches:
6+
- docker
7+
8+
jobs:
9+
Update:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
- name: Publish to Registry
14+
uses: elgohr/Publish-Docker-Github-Action@master
15+
with:
16+
name: paveloom-c/GPKernels/c-gpkernels
17+
username: ${{ github.actor }}
18+
password: ${{ secrets.GITHUB_TOKEN }}
19+
registry: docker.pkg.github.com
20+
tags: "latest"

0 commit comments

Comments
 (0)