Merge pull request #52 from DopplerHQ/watsonian/secret-subsets #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Extract Version | |
id: extract | |
run: echo "version=${GITHUB_REF#refs/*/v}" >> $GITHUB_OUTPUT | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: | | |
dopplerhq/kubernetes-operator:${{ steps.extract.outputs.version }} | |
dopplerhq/kubernetes-operator:latest | |
build-args: | | |
CONTROLLER_VERSION=${{ steps.extract.outputs.version }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.20" | |
- name: Generate Helm Chart and Recommended YAML | |
run: make dist charts | |
env: | |
VERSION: ${{ steps.extract.outputs.version }} | |
- name: Upload Recommended YAML | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dist/recommended.yaml | |
tag: ${{ github.ref }} | |
- name: Publish Helm Chart | |
run: ./hack/helm/deploy-pages.sh ./doppler-kubernetes-operator*.tgz | |
env: | |
PRIVATE_KEY: ${{ secrets.CHARTS_DEPLOY_PRIVATE_KEY }} |