Bump braces from 3.0.2 to 3.0.3 in /themes/toha #18
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: build-hugo-website | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
install-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get update | |
- run: sudo apt-get -y install hugo unzip | |
- run: wget -O /tmp/terraform.zip https://releases.hashicorp.com/terraform/0.13.0/terraform_0.13.0_linux_amd64.zip | |
- run: unzip /tmp/terraform.zip -d /tmp/ | |
- run: sudo mv /tmp/terraform /usr/local/bin/terraform | |
- run: chmod +x /usr/local/bin/terraform | |
- run: hugo | |
- run: terraform version |