Skip to content

Commit

Permalink
1.1.1 release with some more release fixes (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackshirazi authored Aug 7, 2024
1 parent bc038e5 commit fe8ac86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- name: Docker build, tag, and push
run: |
make .webhook REPO=${{ secrets.ELASTIC_DOCKER_REGISTRY }} NAME=${DOCKER_IMAGE_NAME} TAG=${{ github.ref_name }}
docker push ${DOCKER_REGISTRY}/${DOCKER_IMAGE_NAME}:${{ github.ref_name }}
docker tag ${DOCKER_REGISTRY}/${DOCKER_IMAGE_NAME}:${{ github.ref_name }} ${DOCKER_REGISTRY}/${DOCKER_IMAGE_NAME}:latest
docker push ${DOCKER_REGISTRY}/${DOCKER_IMAGE_NAME}:latest
docker push ${{ secrets.ELASTIC_DOCKER_REGISTRY }}/${DOCKER_IMAGE_NAME}:${{ github.ref_name }}
docker tag ${{ secrets.ELASTIC_DOCKER_REGISTRY }}/${DOCKER_IMAGE_NAME}:${{ github.ref_name }} ${{ secrets.ELASTIC_DOCKER_REGISTRY }}/${DOCKER_IMAGE_NAME}:latest
docker push ${{ secrets.ELASTIC_DOCKER_REGISTRY }}/${DOCKER_IMAGE_NAME}:latest
release-helm-charts:
name: Release Helm Charts
Expand Down
2 changes: 1 addition & 1 deletion charts/apm-attacher/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: apm-attacher
type: application
version: "1.1.0"
version: "1.1.1"
description: A Helm chart installing the Elastic APM Kubernetes Attacher.
sources:
- https://github.com/elastic/apm-k8s-attacher
2 changes: 1 addition & 1 deletion charts/apm-attacher/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: docker.elastic.co/observability/apm-attacher
tag: "v1.1.0"
tag: "v1.1.1"
pullPolicy: Always
pullSecrets: []

Expand Down

0 comments on commit fe8ac86

Please sign in to comment.