Skip to content

Commit

Permalink
(fix) Adding build cache environment variables to server release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
craigatk committed Mar 26, 2020
1 parent 854d040 commit d0f7514
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ jobs:
cd ui
yarn install
- name: Build project
env:
CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }}
CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }}
run: |
./gradlew :server:server-app:assembleFull
- name: cypress-common install
Expand All @@ -67,6 +70,8 @@ jobs:
- name: Run functional tests
env:
DB_URL: "jdbc:postgresql://localhost:5432/projektordb"
CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }}
CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }}
run: ./gradlew :functional-test:functionalTest

- name: Create Release
Expand Down

0 comments on commit d0f7514

Please sign in to comment.