mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-17 19:26:48 +00:00
14 lines
323 B
Bash
Executable File
14 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Execute preparation tasks for a regular patch release. Requires admin permission on the repo.
|
|
#
|
|
set -e
|
|
|
|
# todo: ask to confirm, and remind to check the ready to go column.
|
|
|
|
# Download translations and push to master
|
|
$(dirname "$0")/update_locales
|
|
|
|
# Bump the patch version and push the tag
|
|
$(dirname "$0")/tag
|