Last active
December 23, 2019 02:36
-
-
Save Overdrivr/e3f90cabf71da10b7f30c698f3e02cbe to your computer and use it in GitHub Desktop.
Revisions
-
Overdrivr revised this gist
Mar 22, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # See https://blog.cronobo.com/2018/03/22/deploy-firebase-from-gitlab-ci.html stages: - deploy -
Overdrivr created this gist
Mar 22, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ # See stages: - deploy deploy: image: node:8 stage: deploy environment: production script: - npm install -g firebase-tools - firebase -V - cd ./dist - firebase deploy --token "$FIREBASE_TOKEN" -P <my-firebase-project> only: - master