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 349aa8b commit acf37eeCopy full SHA for acf37ee
.github/workflows/docker.yml renamed to .github/workflows/build.yml
@@ -1,10 +1,10 @@
1
-name: Docker Build
+name: build
2
3
on:
4
push:
5
branches:
6
- "*"
7
- push_request:
+ pull_request:
8
9
10
.github/workflows/go.yml
.github/workflows/docker-tagged.yml renamed to .github/workflows/publish.yml
@@ -1,4 +1,4 @@
-name: Docker Tagged Build
+name: publish
@@ -40,7 +40,7 @@ jobs:
40
with:
41
platforms: linux/amd64,linux/arm/v7,linux/arm64
42
push: true
43
- tags: ghcr.io/openfaas/nats-connector:${{ steps.get_tag.outputs.TAG }}
44
-
45
- - name: Image digest
46
- run: echo ${{ steps.docker_build.outputs.digest }}
+ tags: |
+ ghcr.io/openfaas/nats-connector:${{ github.sha }}
+ ghcr.io/openfaas/nats-connector:${{ steps.get_tag.outputs.TAG }}
+ ghcr.io/openfaas/nats-connector:latest
0 commit comments