Skip to content

Commit

Permalink
add missing env variable. #681
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed Nov 24, 2020
1 parent d49e14e commit 26556d9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
ports:
- 9200
env:
MEMCACHE_SERVERS: "127.0.0.1:11211"
MEMCACHE_SERVERS: "localhost:11211"
MYSQL_HOST: "127.0.0.1"
MYSQL_DATABASE: datacite
MYSQL_USER: root
Expand All @@ -43,6 +43,7 @@ jobs:
JWT_PUBLIC_KEY: ${{ secrets.JWT_PUBLIC_KEY }}
MDS_USERNAME: ${{ secrets.MDS_USERNAME }}
MDS_PASSWORD: ${{ secrets.MDS_PASSWORD }}
AWS_REGION: ${{ secrets.AWS_REGION }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
Expand Down Expand Up @@ -70,10 +71,10 @@ jobs:
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
ES_HOST: localhost:${{ job.services.elasticsearch.ports[9200] }}
ELASTIC_PASSWORD: "changeme"
MEMCACHE_SERVERS: "127.0.0.1:11211"
MEMCACHE_SERVERS: "localhost:11211"
run: |
bundle exec rubocop
bundle exec rake
bundle exec rspec
echo $?
- name: Publish code coverage
uses: paambaati/[email protected]
Expand Down

0 comments on commit 26556d9

Please sign in to comment.