Skip to content

Commit

Permalink
Fixing if statement on action step
Browse files Browse the repository at this point in the history
  • Loading branch information
daithihearn committed Feb 27, 2023
1 parent 9b7b0bd commit 96757ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
prop_path: "version"
- name: Update manifest.json version
uses: jossef/action-set-json-field@v2
if: steps.manifestversion.outputs.prop !== github.ref_name
if: steps.manifestversion.outputs.prop != ${{ github.ref_name }}
with:
file: public/manifest.json
field: version
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "5.4.3",
"version": "5.4.4",
"description": "React frontend for the Cards 110",
"author": "Daithi Hearn",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"short_name": "Cards 110",
"name": "Cards 110",
"version": "5.4.3",
"version": "5.4.4",
"icons": [
{
"src": "./assets/favicon.png",
Expand Down

0 comments on commit 96757ae

Please sign in to comment.