We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7af58 commit fd5cbd8Copy full SHA for fd5cbd8
.github/workflows/publish-ghcr.yml
@@ -0,0 +1,15 @@
1
+name: Docker image CI for GHCR
2
+
3
+on:
4
+ push
5
6
+jobs:
7
+ build_and_publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - name: Build and push the image
12
+ run: |
13
+ docker login --username librecode --password ${{ secrets.GH_PAT }} ghcr.io
14
+ docker build . --tag ghcr.io/librecode/imagens-nextcloud:30
15
+ docker push ghcr.io/librecode/imagens-nextcloud:30
0 commit comments