Do more work in the workflow #4
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: Deploy to space | |
on: | |
push: | |
branches: | |
- jadudm/tf-0103 | |
workflow_dispatch: | |
# workflow_call: | |
# inputs: | |
# environment: | |
# required: true | |
# type: string | |
jobs: | |
deploy: | |
name: apply ( ${{ inputs.environment }} ) | |
runs-on: ubuntu-latest | |
environment: ${{ inputs.environment }} | |
env: | |
KEY: "terraform.tfstate.${{ inputs.environment }}" | |
TF_VAR_cf_user: ${{ secrets.CF_USERNAME }} | |
TF_VAR_cf_password: ${{ secrets.CF_PASSWORD }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
# Checkout the repository to the runner | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Terraform | |
run: | | |
curl -k -O -L https://github.com/cloudfoundry/cli/releases/download/v8.8.0/cf8-cli-installer_8.8.0_x86-64.deb | |
sudo apt-get install --assume-yes ./cf8-cli-installer_8.8.0_x86-64.deb | |
- name: Authenticate against Cloud.gov | |
run: | | |
cf api api.fr.cloud.gov | |
cf auth ${{ secrets.CF_USERNAME }} ${{ secrets.CF_PASSWORD }} | |
- name: Run `make dev` (terraform init -> plan -> apply) | |
run: | | |
pushd ${GITHUB_WORKSPACE}/terraform | |
make dev | |
popd |