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.
2 parents 9062392 + acc4f51 commit d1d82e6Copy full SHA for d1d82e6
.github/workflows/ci-workflow.yml renamed to .github/workflows/ci-tests.yml
@@ -1,4 +1,4 @@
1
-name: "CI with dependencies from helm chart"
+name: "CI Tests with dependencies from helm chart"
2
on: [pull_request, push]
3
4
jobs:
.github/workflows/docker-publish.yml
@@ -0,0 +1,25 @@
+name: "Docker Publish"
+on:
+ release:
+ types: [published]
5
+
6
+jobs:
7
+ build-and-publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
12
+ - name: Login to Docker Hub
13
+ uses: docker/login-action@v3
14
+ with:
15
+ username: miaplaza
16
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
17
18
+ - name: Build and push Docker image
19
+ uses: docker/build-push-action@v6
20
21
+ context: .
22
+ push: true
23
+ tags: |
24
+ miaplaza/middlemail:latest
25
+ miaplaza/middlemail:${{ github.ref_name }}
0 commit comments