Skip to content

Commit

Permalink
S3
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Jul 4, 2024
1 parent a2354a2 commit d74cb30
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/input-s3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Input with S3
on:
pull_request:
push:
schedule:
- cron: "0 18 * * *" # 3am in Asia/Tokyo
jobs:
input-with-postgresql:
runs-on: ubuntu-latest
# push: always run.
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up OpenJDK 8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: "temurin"
- name: Download Embulk
uses: ./.github/actions/install-embulk
with:
version: "0.11.3"
- name: List files
run: ls -la

0 comments on commit d74cb30

Please sign in to comment.