Skip to content

Commit

Permalink
build: add github action to deploy on push
Browse files Browse the repository at this point in the history
  • Loading branch information
igobranco committed Feb 16, 2024
1 parent 39413da commit 0c12e82
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy

on:
push:
branches:
- master
- main

jobs:
ci:
name: Deploy to Buckets
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy to all environments
run: deploy.sh
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ AWS_SECRET_ACCESS_KEY }}

0 comments on commit 0c12e82

Please sign in to comment.