Skip to content

Commit

Permalink
Merge branch 'main' of github.com:acorn-io/rubra
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjay920 committed Jan 23, 2024
2 parents ecdf6c3 + 36297b1 commit 70f6aad
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/push_quickstart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: push-quickstart
on:
push:
branches:
- main
paths:
- "quickstart.sh"

jobs:
push_quickstart:
name: push-quickstart
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Copy files to S3
env:
AWS_ENDPOINT_URL: ${{ secrets.R2_ENDPOINT_URL }}
AWS_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_KEY }}
AWS_DEFAULT_REGION: auto

run: |
ls -la
aws s3 cp quickstart.sh s3://${{ secrets.R2_BUCKET_NAME }}/quickstart.sh
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}

0 comments on commit 70f6aad

Please sign in to comment.