-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(delivery): add a release script to increase the bus factor (#43)
- Loading branch information
1 parent
b511b9d
commit ce4b34f
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/sh | ||
publish() { | ||
gh workflow run docker-publish.yml \ | ||
--repo prestashop/prestashop-flashlight "$@" | ||
} | ||
|
||
publish --field ps_version=latest | ||
publish --field ps_version=1.7.8.10 | ||
publish --field ps_version=1.6.1.24 | ||
|
||
publish --field os_flavour=debian --field ps_version=latest | ||
publish --field os_flavour=debian --field ps_version=1.7.8.10 | ||
publish --field os_flavour=debian --field ps_version=1.6.1.24 | ||
|
||
# Minor versions from 1.7 | ||
publish --field ps_version=1.7.0.6 | ||
publish --field ps_version=1.7.1.2 | ||
publish --field ps_version=1.7.2.5 | ||
publish --field ps_version=1.7.3.4 | ||
publish --field ps_version=1.7.4.4 | ||
publish --field ps_version=1.7.5.2 | ||
publish --field ps_version=1.7.6.9 | ||
publish --field ps_version=1.7.7.8 | ||
publish --field ps_version=1.7.8.9 | ||
publish --field ps_version=8.0.5 |