Skip to content

Commit 866581e

Browse files
authored
feat: add publish dockerfile (#938)
1 parent 41a1728 commit 866581e

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Ubuntu",
55
"build": {
6-
"dockerfile": "Dockerfile",
6+
"dockerfile": "../Dockerfile",
77
// Update 'VARIANT' to pick an Ubuntu version: focal, bionic
88
"args": { "VARIANT": "focal" }
99
},
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Publish Docker
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
- name: Publish to Registry
12+
uses: elgohr/Publish-Docker-Github-Action@master
13+
with:
14+
name: algorithm-archivists/aaa-langs
15+
username: ${{ github.actor }}
16+
password: ${{ secrets.GITHUB_TOKEN }}
17+
registry: ghcr.io
File renamed without changes.

0 commit comments

Comments
 (0)