Skip to content

Commit 543b377

Browse files
NeunerleiCopilotAriansdfCopilotactions-user
authored
Development (#233)
* build: ensure file uploads up to 100MB (from PHP side) * Initial plan * Initial plan for cropperjs v2 migration Co-authored-by: Neunerlei <22350956+Neunerlei@users.noreply.github.com> * Update cropperjs to v2 with migration changes Co-authored-by: Neunerlei <22350956+Neunerlei@users.noreply.github.com> * Fix promise chain error handling in saveCroppedImage Co-authored-by: Neunerlei <22350956+Neunerlei@users.noreply.github.com> * refactor: finish implementation of cropper v2 * fix(LDAP): add missing braces to closure * fix: Ensure REVERB_APP_KEY defaults to "hawki2" (cherry picked from commit e6bd8cf) * fix: do not fail if stream property is missing (cherry picked from commit 436ebad) * fix: fix cascading error when postData in stream_functions.js fails (cherry picked from commit 9a97fdf) * fix(Reverb): add missing braces to reverb config * docs: add potential alternatives for LDAP_ATTR_EMPLOYEETYPE * fix(LDAP): fix various minor issues and make errors in auth services easier to debug * fix: ensure artisan app:token command gets correct service * feat: impelement automatic cache buster generation * refactor: adhere to copilot recommendations * Update config/app.php Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Rename APP_CACHE_BUST to APP_CACHE_BUSTER * refactor: handle edge cases in DecoratorTrait * build: add automatic documentation deployment * build: add automatic documentation deployment * build: add automatic documentation deployment * build: add automatic documentation deployment * build: add automatic documentation deployment * build: add automatic documentation deployment * docs: update documentation link in README.md * fixed thread upload button Thread upload button fixed System Prompt Typo fixed extra Console Logs removed * fix: ensure DecoratorTrait translates all privates properties correctly * fix: documentation pipeline only builds on pull requests but does not deploy * docs: clean up version creation * build: fix pipeline permissions * build: merge pipelines to allow automation * build: fix discord notification pipeline * build: fix discord notification pipeline * build: fix discord notification pipeline * build: fix discord notification pipeline * build: fix discord notification pipeline * build: fix discord notification pipeline --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Neunerlei <22350956+Neunerlei@users.noreply.github.com> Co-authored-by: Ariansdf <38947447+Ariansdf@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com>
1 parent 4855b1f commit 543b377

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/publish-version.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
outputs:
2020
should_release: ${{ steps.should_release.outputs.should_release }}
2121
version: ${{ steps.version.outputs.version }}
22+
release_name: ${{ steps.create_release.outputs.release_name }}
23+
release_body: ${{ steps.create_release.outputs.release_body }}
24+
release_url: ${{ steps.create_release.outputs.release_url }}
2225
steps:
2326
- name: Checkout repository
2427
uses: actions/checkout@v4
@@ -191,8 +194,12 @@ jobs:
191194
git config --local user.email "action@github.com"
192195
git config --local user.name "GitHub Action"
193196
197+
- name: Wait for main branch propagation
198+
run: sleep 10
199+
194200
- name: Merge main into development
195201
run: |
202+
git fetch origin main
196203
git checkout development
197204
git pull origin development
198205
git merge origin/main --no-ff -m "chore: Merge main back to development after release ${{ needs.release.outputs.version }}"

0 commit comments

Comments
 (0)