Skip to content

Commit e37ea6c

Browse files
committed
Fixes
1 parent b95a1a1 commit e37ea6c

File tree

3 files changed

+17
-26
lines changed

3 files changed

+17
-26
lines changed

.github/workflows/build_publish.yml

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ jobs:
5151
DEVELOPMENT_TEAM: "${{ secrets.DEVELOPMENT_TEAM }}"
5252
VITE_NEW_PAGE_URL: "${{ secrets.VITE_NEW_PAGE_URL }}"
5353

54+
- name: Commit new version number
55+
run: |
56+
git config user.name github-actions
57+
git config user.email [email protected]
58+
git add .
59+
git commit -m "Increment build number"
60+
git push
61+
5462
deploy-firefox:
5563
name: Deploying Firefox Extension
5664
runs-on: ubuntu-latest
@@ -88,20 +96,3 @@ jobs:
8896
--api-key="${{ secrets.FIREFOX_JWT_ISSUER }}" \
8997
--api-secret="${{ secrets.FIREFOX_JWT_SECRET }}" \
9098
--channel=listed
91-
92-
commit-changes:
93-
name: Commit version changes
94-
runs-on: ubuntu-latest
95-
needs: [deploy-ios, deploy-firefox]
96-
97-
steps:
98-
- name: Checkout repository
99-
uses: actions/checkout@v5
100-
101-
- name: Commit new version number
102-
run: |
103-
git config user.name github-actions
104-
git config user.email [email protected]
105-
git add .
106-
git commit -m "Increment build number" || echo "No changes to commit"
107-
git push

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redirector",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "Allows you to set custom redirects. It is useful e.g. for redirecting popular sites to alternative frontends",
55
"license": "MIT",
66
"scripts": {

xcode/Redirector.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@
662662
buildSettings = {
663663
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
664664
CODE_SIGN_STYLE = Manual;
665-
CURRENT_PROJECT_VERSION = 73;
665+
CURRENT_PROJECT_VERSION = 74;
666666
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
667667
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = "$(DEVELOPMENT_TEAM)";
668668
GENERATE_INFOPLIST_FILE = YES;
@@ -698,7 +698,7 @@
698698
buildSettings = {
699699
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
700700
CODE_SIGN_STYLE = Manual;
701-
CURRENT_PROJECT_VERSION = 73;
701+
CURRENT_PROJECT_VERSION = 74;
702702
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
703703
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = "$(DEVELOPMENT_TEAM)";
704704
GENERATE_INFOPLIST_FILE = YES;
@@ -738,7 +738,7 @@
738738
CODE_SIGN_IDENTITY = "Apple Development";
739739
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
740740
CODE_SIGN_STYLE = Manual;
741-
CURRENT_PROJECT_VERSION = 73;
741+
CURRENT_PROJECT_VERSION = 74;
742742
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
743743
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = "$(DEVELOPMENT_TEAM)";
744744
GENERATE_INFOPLIST_FILE = YES;
@@ -782,7 +782,7 @@
782782
CODE_SIGN_IDENTITY = "Apple Development";
783783
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
784784
CODE_SIGN_STYLE = Manual;
785-
CURRENT_PROJECT_VERSION = 73;
785+
CURRENT_PROJECT_VERSION = 74;
786786
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
787787
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = "$(DEVELOPMENT_TEAM)";
788788
GENERATE_INFOPLIST_FILE = YES;
@@ -824,7 +824,7 @@
824824
buildSettings = {
825825
CODE_SIGN_ENTITLEMENTS = "macOS (Extension)/Redirector.entitlements";
826826
CODE_SIGN_STYLE = Automatic;
827-
CURRENT_PROJECT_VERSION = 73;
827+
CURRENT_PROJECT_VERSION = 74;
828828
DEAD_CODE_STRIPPING = YES;
829829
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
830830
ENABLE_HARDENED_RUNTIME = YES;
@@ -858,7 +858,7 @@
858858
buildSettings = {
859859
CODE_SIGN_ENTITLEMENTS = "macOS (Extension)/Redirector.entitlements";
860860
CODE_SIGN_STYLE = Automatic;
861-
CURRENT_PROJECT_VERSION = 73;
861+
CURRENT_PROJECT_VERSION = 74;
862862
DEAD_CODE_STRIPPING = YES;
863863
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
864864
ENABLE_HARDENED_RUNTIME = YES;
@@ -895,7 +895,7 @@
895895
CODE_SIGN_ENTITLEMENTS = "macOS (App)/Redirector.entitlements";
896896
CODE_SIGN_IDENTITY = "Apple Development";
897897
CODE_SIGN_STYLE = Automatic;
898-
CURRENT_PROJECT_VERSION = 73;
898+
CURRENT_PROJECT_VERSION = 74;
899899
DEAD_CODE_STRIPPING = YES;
900900
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
901901
ENABLE_HARDENED_RUNTIME = YES;
@@ -933,7 +933,7 @@
933933
CODE_SIGN_ENTITLEMENTS = "macOS (App)/Redirector.entitlements";
934934
CODE_SIGN_IDENTITY = "Apple Development";
935935
CODE_SIGN_STYLE = Automatic;
936-
CURRENT_PROJECT_VERSION = 73;
936+
CURRENT_PROJECT_VERSION = 74;
937937
DEAD_CODE_STRIPPING = YES;
938938
DEVELOPMENT_TEAM = "$(DEVELOPMENT_TEAM)";
939939
ENABLE_HARDENED_RUNTIME = YES;

0 commit comments

Comments
 (0)