Skip to content

Added text color on hover for form button. #13

Added text color on hover for form button.

Added text color on hover for form button. #13

Workflow file for this run

name: CI
on:
push:
branches:
- main #here we choose to deploy only when a push is detected on the main branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1 # Use your bucket region here
# Here you could add some building steps if you were dealing with some angular/react/Vue...
# - name: Build static site
# run: yarn install && npm run-script build
- name: Deploy static site to S3 bucket
run: aws s3 sync ./claroalter_base/css/ s3://dh-drupal/claroalter/css --delete
# --delete flag will remove any file in the s3 that are not on the "thefoldertodeploy" folder