Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgodbolt committed Mar 17, 2024
1 parent 2ef1f5c commit e0dd2e6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Miracle deployment

on: [push]

jobs:
deploy:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build distribution
run: |
make dist
# - uses: jakejarvis/s3-sync-action@master
# with:
# args: --cache-control max-age=30 --metadata-directive REPLACE
# env:
# AWS_S3_BUCKET: bbc.xania.org
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# SOURCE_DIR: "out/dist"

0 comments on commit e0dd2e6

Please sign in to comment.