First commit
Some checks failed
Upload Website / deploy (push) Failing after 5m2s

This commit is contained in:
2026-07-31 22:07:27 -05:00
parent b49cafd39a
commit ee19790c2d
2 changed files with 34 additions and 0 deletions

23
.gitea/workflows/work.yml Normal file
View File

@@ -0,0 +1,23 @@
name: Upload Website
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
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: garage
- name: Deploy static site to S3 bucket
run: aws --endpoint-url https://s3.tesses.org s3 sync ./src/ s3://website-test --delete

11
src/index.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hi</title>
</head>
<body>
<h1>Hello, world</h1>
</body>
</html>