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 bcfbe90 commit cd1b604Copy full SHA for cd1b604
.github/workflows/deploy.yaml
@@ -0,0 +1,15 @@
1
+name: Deploy
2
+on: push
3
+
4
+jobs:
5
+ deploy:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Check out the repository
9
+ uses: actions/checkout@v4
10
+ - name: Log into GHCR
11
+ run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
12
+ - name: Build the image
13
+ run: docker compose build
14
+ - name: Push the image
15
+ run: docker compose push
0 commit comments