Skip to content

Commit

Permalink
Update dockerbuild.yml
Browse files Browse the repository at this point in the history
Changed Pause to before Install of Provider
  • Loading branch information
sfawcett123 authored Aug 19, 2020
1 parent 045dd12 commit 29dcdfa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,19 @@ jobs:
- name: Get Short SHA
id: sha
run: echo ::set-output name=short::$(git rev-parse --short $GITHUB_SHA)

- name: Install Terraform CloudFoundry Provider
run: |
mkdir -p $HOME/.terraform.d/plugins/linux_amd64
wget -O ${{ env.CF_PROVIDER_DIR }} https://github.com/cloudfoundry-community/terraform-provider-cf/releases/latest/download/terraform-provider-cloudfoundry_linux_amd64
chmod +x ${{ env.CF_PROVIDER_DIR }}

- name: Wait for any previous runs to complete
uses: softprops/turnstyle@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
continue-after-seconds: 180

- name: Install Terraform CloudFoundry Provider
run: |
mkdir -p $HOME/.terraform.d/plugins/linux_amd64
wget -O ${{ env.CF_PROVIDER_DIR }} https://github.com/cloudfoundry-community/terraform-provider-cf/releases/latest/download/terraform-provider-cloudfoundry_linux_amd64
chmod +x ${{ env.CF_PROVIDER_DIR }}
- name: Terraform Init
run: |
Expand Down

0 comments on commit 29dcdfa

Please sign in to comment.