Skip to content

Commit cfb5776

Browse files
committed
Updated author and Dockerfile
1 parent c1c16fa commit cfb5776

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14-slim
1+
FROM node:current-slim
22
RUN npm install -g firebase-tools
33
COPY entrypoint.sh /usr/local/bin
44
ENTRYPOINT ["entrypoint.sh"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
build:
2-
docker build . -t jsryudev/deploy-firebase-functions
2+
docker build . -t dheshalj/deploy-firebase-functions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v2
26-
- uses: jsryudev/[email protected]
26+
- uses: dheshalj/[email protected]
2727
env:
2828
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
2929
FIREBASE_PROJECT: firebase-project-id
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- uses: actions/checkout@v2
46-
- uses: jsryudev/[email protected]
46+
- uses: dheshalj/[email protected]
4747
env:
4848
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
4949
FIREBASE_PROJECT: firebase-project-id

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'Deploy to Firebase Cloud Functions'
2-
author: 'jsryudev <jsryu.dev@gmail.com>'
2+
author: 'dheshalj <dheshal.j@gmail.com>'
33
description: 'A GitHub Action to deploy to Firebase Cloud Functions'
44
runs:
55
using: 'docker'

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ -z "${FIREBASE_PROJECT}" ]; then
1212
exit 1
1313
fi
1414

15-
firebase deploy \
15+
firebase deploy --only functions \
1616
-m "${GITHUB_REF} (${GITHUB_SHA})" \
1717
--project ${FIREBASE_PROJECT} \
18-
--only functions
18+

0 commit comments

Comments
 (0)