Skip to content

Commit 3902c7f

Browse files
committed
Hopefully a final fix, this one should skip
But will create a 4.0 after rebasing firefox branch for sanity
1 parent 8f8d8af commit 3902c7f

File tree

2 files changed

+7
-16
lines changed

2 files changed

+7
-16
lines changed

.github/workflows/release-extension.yaml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
push:
55
branches:
66
- main
7-
# paths:
8-
# - 'manifest.json'
7+
paths:
8+
- 'manifest.json'
99

1010
jobs:
1111
check_version:
@@ -104,7 +104,7 @@ jobs:
104104
# git commit -m "Update README and CHANGELOG for version ${{ needs.check_version.outputs.new_version }}"
105105
# git push
106106
107-
build_zips:
107+
create_release:
108108
runs-on: ubuntu-latest
109109
needs:
110110
- check_version
@@ -122,10 +122,11 @@ jobs:
122122
run: |
123123
git fetch --all
124124
git checkout origin/firefox
125-
# git rebase -X theirs origin/main # assuming the branch is already up-to-date other than version number
126-
# git push origin HEAD -f
125+
git rebase -X theirs origin/main # assuming the branch is already up-to-date other than version number
126+
git push origin HEAD -f
127127
VERSION=${{ needs.check_version.outputs.new_version }}
128128
zip -r ~/signature-sync-firefox-${VERSION}.zip . -x '.*' -x '__MACOSX' -x '*.md'
129+
git checkout main
129130
130131
- name: Upload Chrome zip
131132
uses: actions/upload-artifact@v4
@@ -138,16 +139,6 @@ jobs:
138139
with:
139140
name: signature-sync-firefox-${{ needs.check_version.outputs.new_version }}.zip
140141
path: ~/signature-sync-firefox-${{ needs.check_version.outputs.new_version }}.zip
141-
142-
create_release:
143-
runs-on: ubuntu-latest
144-
needs:
145-
- check_version
146-
- update_files
147-
- build_zips
148-
steps:
149-
- name: Checkout repository
150-
uses: actions/checkout@v4
151142

152143
- name: Print files list
153144
run: |

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "SignatureSync: Pro Signatures",
55
"short_name": "SignatureSync",
66
"description": "Simplify your messaging with SignatureSync, the tool that automates your signatures, ensuring a professional touch every time.",
7-
"version": "3.4",
7+
"version": "3.3",
88
"icons": {
99
"16": "icons/light/icon16.png",
1010
"32": "icons/light/icon32.png",

0 commit comments

Comments
 (0)