Obsidian Sync 2024-11-28 11:01:08 #1762
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Build and Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
schedule: # everyday at 1831 UTC or 0001 IST | |
- cron: '31 18 * * *' | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Build | |
run: go build ./... | |
- name: Run | |
run: ./debugjois.dev build | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-2 | |
- name: Upload to S3 | |
run: ./debugjois.dev upload |