Skip to content

Commit

Permalink
Update node to 14.4.0, use replace npm with yarn (#16)
Browse files Browse the repository at this point in the history
* Update node to 14.4.0, replace npm with yarn

* Update README.md to demonstrate how user can reference a major release tag

Fixes: #15
  • Loading branch information
Wojciech Zięba authored Jun 21, 2020
1 parent fc1050f commit 71535f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:12.10.0-alpine
FROM node:14.4.0-alpine3.12

WORKDIR /app
COPY . /app

RUN npm install -g firebase-tools \
RUN yarn global add firebase-tools \
&& apk update \
&& apk add git

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: build release
run: ./gradlew assembleRelease
- name: upload artifact to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1.2.1
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
appId: ${{secrets.FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_TOKEN}}
Expand Down

0 comments on commit 71535f7

Please sign in to comment.