terraform/.forgejo/workflows/non-lab.yml
Chris Cowley a325ba8f78
All checks were successful
/ non-lab (push) Successful in 1m14s
gmm
2024-09-02 11:52:14 +02:00

32 lines
994 B
YAML

on:
push:
branches:
- 'main'
jobs:
non-lab:
runs-on: docker
#container:
# image: ghcr.io/opentofu/opentofu:1.7.2
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
non-lab
- name: Setup OpenTofu
run: |
curl -fsSl https://get.opentofu.org/install-opentofu.sh -o /tmp/install-opentofu.sh
chmod +x /tmp/install-opentofu.sh
/tmp/install-opentofu.sh --install-method deb
rm -f /tmp/install-opentofu.sh
- name: Setup Kubernetes client
run: |
export B2_APPLICATION_KEY=${{ secrets.B2_APPLICATION_KEY }}
echo ${{ env.B2_APPLICATION_KEY_ID}}
- name: Tofu init
working-directory: ${{ github.workspace }}/non-lab
run: |
export KUBE_CONFIG_PATH="/tmp/kubeconfig"
echo ${{ secrets.KUBE_CONFIG_BASE64 }} | base64 -d > ${KUBE_CONFIG_PATH}
tofu init
- run: echo ${B2_APPLICATION_KEY_ID}