From 3031111db137fff559f2e1639dd7ef1885630bc6 Mon Sep 17 00:00:00 2001 From: Les Aker Date: Tue, 28 Jul 2026 20:49:08 -0400 Subject: [PATCH] add tfp action --- actions/base-tfprovider/action.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 actions/base-tfprovider/action.yml diff --git a/actions/base-tfprovider/action.yml b/actions/base-tfprovider/action.yml new file mode 100644 index 0000000..a3a8105 --- /dev/null +++ b/actions/base-tfprovider/action.yml @@ -0,0 +1,18 @@ +name: Base terraform provider CI +description: Checkout repo and run make +inputs: + gpg_key: + description: GPG key ID + required: true +runs: + using: composite + steps: + - name: Checkout + uses: actions/checkout@v7 + with: + submodules: recursive + - name: Build + shell: bash + run: make + env: + GPG_PRIVATE_KEY: ${{ inputs.gpg_key }}