forked from jsirianni/bindplane-gitflow-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1.01 KB
/
basic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Basic 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: mkdir download
- name: Install BindPlane CLI
run: |
curl -o bindplane.zip https://storage.googleapis.com/bindplane-op-releases/bindplane/bindplane-ee-v1.30.0-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: bindplane apply -f gitops_workflow_basic/resources.yaml