We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ef084 commit b1a7b97Copy full SHA for b1a7b97
2 files changed
.github/workflows/node.js.yml
@@ -14,6 +14,7 @@ jobs:
14
15
env:
16
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
17
+ VUE_APP_GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
18
19
strategy:
20
matrix:
src/App.vue
@@ -43,7 +43,7 @@ export default {
43
data() {
44
return {
45
tabs: ['Projects', 'Books'],
46
- apiKey: 'AIzaSyBj6pwMyPi8NVKBybSPJ3WWwGfx3__Nr4I',
+ apiKey: process.env.VUE_APP_GOOGLE_API_KEY,
47
};
48
},
49
components: {
0 commit comments