Signing Windows binaries #1
Workflow file for this run
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: CI | |
on: | |
schedule: | |
# Run at 10am PST / 5pm UTC weekdays | |
- cron: '0 17 * * 1-5' | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
env: | |
AWS_ACCOUNT_ID: REPLACE_ME | |
TERRAFORM_PATH: terraform | |
jobs: | |
renewal: | |
name: Certificate Renewal | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: "1.9.4" | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT_ID }}:role/ci-runner | |
aws-region: us-west-2 | |
- name: Terraform Init | |
run: terraform init | |
working-directory: ${{ env.TERRAFORM_PATH }} | |
- name: Terraform Apply | |
run: terraform apply -auto-approve | |
working-directory: ${{ env.TERRAFORM_PATH }} |