feat: delete the created opensearch document #49
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: Build and push image and chart | |
on: | |
push: | |
branches: | |
- main | |
env: | |
NAME: contests | |
IMAGE_REPOSITORY: oci://europe-north1-docker.pkg.dev/nais-io/nais | |
jobs: | |
build_push: | |
outputs: | |
version: ${{ steps.build-push-sign.outputs.version }} | |
permissions: | |
contents: "read" | |
id-token: "write" | |
name: Build and push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: nais/platform-build-push-sign@main | |
id: build-push-sign | |
with: | |
name: ${{ env.NAME }} | |
google_service_account: gh-${{ env.NAME }} | |
workload_identity_provider: ${{ secrets.NAIS_IO_WORKLOAD_IDENTITY_PROVIDER }} | |
push: true | |
- uses: azure/setup-helm@v3 | |
name: "Setup Helm" | |
with: | |
version: "3.12.0" | |
- name: Build Chart | |
run: |- | |
sed -i "s/^version: .*/version: ${{ steps.build-push-sign.outputs.version }}/g" charts/Chart.yaml | |
cat charts/Chart.yaml | |
helm package charts | |
- name: Push Chart | |
run: |- | |
helm push ${{ env.NAME }}*.tgz ${{ env.IMAGE_REPOSITORY }} | |
rollout: | |
needs: | |
- build_push | |
runs-on: fasit-deploy | |
permissions: | |
id-token: write | |
steps: | |
- uses: nais/fasit-deploy@v2 | |
with: | |
chart: ${{ env.IMAGE_REPOSITORY }}/${{ env.NAME }} | |
version: ${{ needs.build_push.outputs.version }} | |
feature_name: ${{ env.NAME }} | |