Skip to content

Commit

Permalink
Merge pull request #27 from finale-lua/static
Browse files Browse the repository at this point in the history
Add deploy-to-aws.yml
  • Loading branch information
asherber authored Dec 15, 2024
2 parents 3964566 + fae85e0 commit a11986d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy-to-aws.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy site to AWS

on:
push:
branches:
- current-production-version

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Deploy to AWS
if: github.event_name == 'push'
uses: onramper/[email protected]
with:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
domain: pdk.finalelua.com
publish_dir: ./html

0 comments on commit a11986d

Please sign in to comment.