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 4412418 commit 627e7acCopy full SHA for 627e7ac
.github/workflows/pipeline.yaml
@@ -0,0 +1,29 @@
1
+name: pipeline
2
+on:
3
+ push:
4
+ branches:
5
+ - "main"
6
+
7
+permissions:
8
+ packages: write
9
10
+jobs:
11
+ build-and-push-image:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Log in to the Container registry
18
+ uses: docker/login-action@v3
19
+ with:
20
+ registry: https://ghcr.io
21
+ username: ${{ github.actor }}
22
+ password: ${{ secrets.GITHUB_TOKEN }}
23
24
+ - name: Build and push Docker image
25
+ uses: docker/build-push-action@v6
26
27
+ context: .
28
+ push: true
29
+ tags: "ghcr.io/dreamsofcode-io/zenstats:latest"
0 commit comments