fix: CI: use :
instead of =
in yml
This commit is contained in:
parent
a0e93f0287
commit
f3fe356a88
1 changed files with 1 additions and 3 deletions
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
|
@ -37,7 +37,6 @@ jobs:
|
|||
ports:
|
||||
- 5432:5432
|
||||
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: ⚡ Cache
|
||||
|
@ -73,7 +72,7 @@ jobs:
|
|||
- name: build and apply migrations
|
||||
run: make migrate
|
||||
env:
|
||||
DATABASE_URL="postgres://postgres:password@localhost:5432/postgres"
|
||||
DATABASE_URL: "postgres://postgres:password@localhost:5432/postgres"
|
||||
|
||||
- name: run tests
|
||||
run: make test
|
||||
|
@ -101,7 +100,6 @@ jobs:
|
|||
GIT_HASH: 8e77345f1597e40c2e266cb4e6dee74888918a61 # dummy value
|
||||
DATABASE_URL: "postgres://postgres:password@localhost:5432/postgres"
|
||||
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
if: matrix.version == 'stable' && (github.repository == 'realaravinth/librepages')
|
||||
uses: JamesIves/github-pages-deploy-action@3.7.1
|
||||
|
|
Loading…
Reference in a new issue