Merge pull request #147 from be-oi/beoi2025_preregistration #203
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: Deploy on S3 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build + Publish | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- run: ruby --version | |
- name: Install dependencies | |
run: | | |
bundle config set --local without 'development' | |
bundle install --jobs 4 --retry 3 | |
- run: bundle exec middleman build --verbose | |
- name: Publish to S3 | |
run: bundle exec middleman s3_sync | |
env: | |
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}} | |
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}} | |
AWS_DEFAULT_REGION: eu-central-1 | |
AWS_BUCKET: www.be-oi.be |