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 efb98e4 commit ca32b31Copy full SHA for ca32b31
.github/workflows/release.yml
@@ -22,6 +22,30 @@ jobs:
22
run: |
23
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
24
25
+ - name: Print version info
26
+ id: semver
27
+ run: |
28
+ make version
29
+
30
+ - name: Set up Docker Buildx
31
+ id: buildx
32
+ uses: crazy-max/ghaction-docker-buildx@v1
33
+ with:
34
+ buildx-version: latest
35
+ qemu-version: latest
36
37
+ - name: Available platforms
38
+ run: echo ${{ steps.buildx.outputs.platforms }}
39
40
+ - name: Build
41
+ env:
42
+ DOCKER_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
43
+ USERNAME: 1gtm
44
+ APPSCODE_ENV: prod
45
46
+ docker login --username ${USERNAME} --password ${DOCKER_TOKEN}
47
+ make release
48
49
- name: Clone charts repository
50
env:
51
GITHUB_USER: 1gtm
0 commit comments