Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ohbyeongmin committed Jan 22, 2024
1 parent 2d8a7b4 commit 1937871
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish-genesis-rollup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish genesis and rollup file

on:
push:
paths:
- 'packages/tokamak/contracts-bedrock/genesis/**'
workflow_dispatch:

jobs:
publish-genesis-rollup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET_DEV }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_DEV }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_DEV }}
AWS_REGION: 'ap-northeast-2'
SOURCE_DIR: 'packages/tokamak/contracts/genesis'

0 comments on commit 1937871

Please sign in to comment.