-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'f30431db14b13c4f0b4753bd9f0d26b76d62b89e' into action-b…
…ump-version
- Loading branch information
Showing
3 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
ref: "master" | ||
|
||
- name: Remove leading 'v' from version numbers | ||
run: | | ||
|
@@ -80,4 +80,16 @@ jobs: | |
git config --local user.name "github-actions[bot]" | ||
git commit -a -m "Bump firebase-tools to ${{ needs.check-releases.outputs.firebase-tools-release }}" | ||
git tag -a ${{ needs.check-releases.outputs.firebase-tools-release }} -m "Bump firebase-tools to ${{ needs.check-releases.outputs.firebase-tools-release }}" | ||
git push origin HEAD:${{ github.ref }} --tags | ||
git push origin HEAD:master --tags | ||
- name: Create Release | ||
id: create_release | ||
uses: comnoco/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
tag_name: ${{ needs.check-releases.outputs.firebase-tools-release }} | ||
release_name: firebase-tools ${{ needs.check-releases.outputs.firebase-tools-release }} | ||
body: "Bump `firebase-tools` to ${{ needs.check-releases.outputs.firebase-tools-release }}" | ||
draft: false | ||
prerelease: false |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM node:16.16.0-buster | ||
|
||
LABEL version="12.9.0" | ||
LABEL version="12.9.1" | ||
LABEL repository="https://github.com/w9jds/firebase-action" | ||
LABEL homepage="https://github.com/w9jds/firebase-action" | ||
LABEL maintainer="Jeremy Shore <[email protected]>" | ||
|
@@ -13,7 +13,7 @@ LABEL com.github.actions.color="gray-dark" | |
RUN apt update && apt-get install --no-install-recommends -y jq openjdk-11-jre && rm -rf /var/lib/apt/lists/*; | ||
|
||
RUN npm i -g [email protected] && npm cache clean --force; | ||
RUN npm i -g [email protected].0 && npm cache clean --force; | ||
RUN npm i -g [email protected].1 && npm cache clean --force; | ||
|
||
COPY LICENSE README.md / | ||
COPY "entrypoint.sh" "/entrypoint.sh" | ||
|
This file contains 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 characters