File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Container image and publish it to GitHub Container Registry
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ publish-docker-image :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Login to GitHub Container Registry
14
+ uses : docker/login-action@v1
15
+ with :
16
+ registry : ghcr.io
17
+ username : ${{ github.actor }}
18
+ password : ${{ secrets.GITHUB_TOKEN }}
19
+ - name : Build and push Docker image to the GHCR
20
+ run : |
21
+ docker build . --tag ghcr.io/gbdev/homebrewhub:latest
22
+ docker push ghcr.io/gbdev/homebrewhub:latest
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ pathspec==0.9.0
17
17
platformdirs == 2.5.2
18
18
pre-commit == 2.20.0
19
19
psycopg2 == 2.9.1
20
+ python-dateutil == 2.9.0.post0
20
21
pytz == 2021.1
21
22
PyYAML == 6.0
22
23
sqlparse == 0.4.2
23
24
toml == 0.10.2
24
25
tomli == 2.0.1
25
26
typing_extensions == 4.3.0
26
27
virtualenv == 20.16.2
27
- python-dateutil == 2.9.0.post0
You can’t perform that action at this time.
0 commit comments