Skip to content

Commit ce8135e

Browse files
committed
actually sync
1 parent cc3a048 commit ce8135e

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fi
1919
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_FILEZILLA_MASTER\". ****"
2020
echo "**** Retrieving external version ****"
21-
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
21+
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
2222
&& awk '/^P:'"filezilla"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
2323
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2424
echo "**** Can't retrieve external version, exiting ****"

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ pipeline {
2525
DEV_DOCKERHUB_IMAGE = 'lsiodev/filezilla'
2626
PR_DOCKERHUB_IMAGE = 'lspipepr/filezilla'
2727
DIST_IMAGE = 'alpine'
28-
DIST_TAG = '3.14'
29-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.14/community/'
28+
DIST_TAG = '3.15'
29+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.15/community/'
3030
DIST_REPO_PACKAGES = 'filezilla'
3131
MULTIARCH = 'true'
3232
CI = 'true'

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,5 +227,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
227227

228228
## Versions
229229

230+
* **23.12.21:** - Rebase to Alpine 3.15.
230231
* **26.09.21:** - Rebase to Alpine 3.14.
231232
* **18.04.21:** - Initial release.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,6 @@ app_setup_block: |
4343
4444
# changelog
4545
changelogs:
46+
- { date: "23.12.21:", desc: "Rebase to Alpine 3.15." }
4647
- { date: "26.09.21:", desc: "Rebase to Alpine 3.14." }
4748
- { date: "18.04.21:", desc: "Initial release." }

0 commit comments

Comments
 (0)