File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1717 charts_url : " https://auerbecklabs.github.io/charts"
1818 repository : " charts"
1919 branch : main
20+
21+ image-build :
22+ runs-on : ubuntu-latest
23+ permissions :
24+ packages : write
25+
26+ steps :
27+ - name : Checkout
28+ uses : actions/checkout@v3
29+
30+ - name : Registry Login
31+ uses : docker/login-action@v2
32+ with :
33+ registry : ghcr.io
34+ username : ${{ github.actor }}
35+ password : ${{ secrets.GITHUB_TOKEN }}
36+
37+ - name : Docker Metadata
38+ id : metadata
39+ uses : docker/metadata-action@v4
40+ with :
41+ images : |
42+ ghcr.io/${{ github.repository }}
43+ tags : |
44+ type=ref,event=tag
45+
46+ - name : Build+Push
47+ uses : docker/build-push-action@v3
48+ with :
49+ context : .
50+ push : true
51+ tags : ${{ steps.metadata.outputs.tags }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments