Fix unsplash access key variable name
This commit is contained in:
parent
49cec15f60
commit
baa6909f8d
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
||||||
env:
|
env:
|
||||||
FLICKR_API_KEY: ${{ secrets.FLICKR_API_KEY }}
|
FLICKR_API_KEY: ${{ secrets.FLICKR_API_KEY }}
|
||||||
FLICKR_USER_ID: ${{ secrets.FLICKR_USER_ID }}
|
FLICKR_USER_ID: ${{ secrets.FLICKR_USER_ID }}
|
||||||
UNSPLASH_API_KEY: ${{ secrets.UNSPLASH_API_KEY }}
|
UNSPLASH_ACCESS_KEY: ${{ secrets.UNSPLASH_ACCESS_KEY }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker:
|
||||||
|
|
2
.github/workflows/deploy.yml
vendored
2
.github/workflows/deploy.yml
vendored
|
@ -8,7 +8,7 @@ on:
|
||||||
env:
|
env:
|
||||||
FLICKR_API_KEY: ${{ secrets.FLICKR_API_KEY }}
|
FLICKR_API_KEY: ${{ secrets.FLICKR_API_KEY }}
|
||||||
FLICKR_USER_ID: ${{ secrets.FLICKR_USER_ID }}
|
FLICKR_USER_ID: ${{ secrets.FLICKR_USER_ID }}
|
||||||
UNSPLASH_API_KEY: ${{ secrets.UNSPLASH_API_KEY }}
|
UNSPLASH_ACCESS_KEY: ${{ secrets.UNSPLASH_ACCESS_KEY }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in a new issue