Skip to content

Commit

Permalink
Move env-var definition
Browse files Browse the repository at this point in the history
  • Loading branch information
John Mortlock committed Jan 4, 2021
1 parent f92827d commit 6d68c34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
AWS_REGION: us-east-1
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
env:
AWS_REGION: us-east-1
- run: bundle exec rake

release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
matrix:
ruby: ["2.6", "2.7", "3.0"]
runs-on: ubuntu-latest
env:
AWS_REGION: us-east-1
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
env:
AWS_REGION: us-east-1
- run: bundle exec rake

0 comments on commit 6d68c34

Please sign in to comment.