Skip to content

Commit 8b4d9cd

Browse files
committed
Update README.md
1 parent 344541b commit 8b4d9cd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Deploy to Firebase Functions for Node14
1+
# Deploy to Firebase Functions for Node16
22

3-
A GitHub Action to deploy to Firebase Cloud Functions for Node14.
3+
A GitHub Action to deploy to Firebase Cloud Functions for Node16
44

55
- Make sure that you checkout the repository using the [actions/checkout](https://github.com/actions/checkout) action
66
- Make sure that you have the `firebase.json` file in the repository
@@ -11,7 +11,7 @@ A GitHub Action to deploy to Firebase Cloud Functions for Node14.
1111

1212
Deploy the `main` branch when a commit is pushed to it:
1313

14-
```
14+
```yml
1515
name: Deploy the main branch
1616
on:
1717
push:
@@ -23,15 +23,15 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v2
26-
- uses: jsryudev/deploy-firebase-functions@v0.0.2
26+
- uses: jsryudev/deploy-firebase-functions@v16.0.0
2727
env:
2828
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
2929
FIREBASE_PROJECT: firebase-project-id
3030
```
3131
3232
Deploy only when a tag starts with `v` is pushed:
3333

34-
```
34+
```yml
3535
name: Deploy a tag
3636
on:
3737
push:
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- uses: actions/checkout@v2
46-
- uses: jsryudev/deploy-firebase-functions@v0.0.2
46+
- uses: jsryudev/deploy-firebase-functions@v16.0.0
4747
env:
4848
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
4949
FIREBASE_PROJECT: firebase-project-id

0 commit comments

Comments
 (0)