Update iis.yaml #33
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: GitOps Workflow | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
bindplane: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: rm -rf download | |
- run: mkdir download | |
- name: Install BindPlane CLI | |
run: | | |
curl -o bindplane.zip https://storage.googleapis.com/bindplane-op-releases/bindplane/latest/bindplane-ee-linux-amd64.zip | |
unzip bindplane.zip | |
sudo chmod +x bindplane | |
sudo mv bindplane /usr/local/bin/bindplane | |
working-directory: download | |
- name: Create Profile | |
run: | | |
bindplane profile set gitflow \ | |
--remote-url https://app.bindplane.com \ | |
--api-key ${{ secrets.BINDPLANE_API_KEY }} | |
bindplane profile use gitflow | |
- name: Test CLI | |
run: bindplane version | |
- name: Deploy Resources | |
run: | | |
cd gitops_workflow_standard | |
bash ./apply_bindplane_configs.sh | |
- name: Export and checkin otel | |
run: | | |
cd gitops_workflow_standard | |
bash ./get_bindplane_otel_configs.sh | |
- name: Commit and Push Changes | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
git add -A | |
git diff-index --quiet HEAD || git commit -m "Automated changes" | |
git push |