File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
2424 echo "> External trigger running off of master branch. To disable this trigger, add \`airsonic-advanced_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
2525 printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
26- EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/airsonic-advanced /airsonic-advanced/releases" | jq -r '.[0] | .tag_name')
26+ EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/kagemomiji /airsonic-advanced/releases" | jq -r '.[0] | .tag_name')
2727 echo "Type is \`github_devel\`" >> $GITHUB_STEP_SUMMARY
2828 if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2929 echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ RUN \
2626 vorbis-tools && \
2727 echo "**** install airsonic advanced ****" && \
2828 if [ -z ${AIRSONIC_ADVANCED_RELEASE+x} ]; then \
29- AIRSONIC_ADVANCED_RELEASE=$(curl -sX GET "https://api.github.com/repos/airsonic-advanced /airsonic-advanced/releases" \
29+ AIRSONIC_ADVANCED_RELEASE=$(curl -sX GET "https://api.github.com/repos/kagemomiji /airsonic-advanced/releases" \
3030 | awk '/tag_name/{print $4;exit}' FS='[""]' ); \
3131 fi && \
3232 mkdir -p \
3333 ${AIRSONIC_ADVANCED_HOME} && \
3434 curl -o \
3535 ${AIRSONIC_ADVANCED_HOME}/airsonic.war -L \
36- "https://github.com/airsonic-advanced /airsonic-advanced/releases/download/${AIRSONIC_ADVANCED_RELEASE}/airsonic.war" && \
36+ "https://github.com/kagemomiji /airsonic-advanced/releases/download/${AIRSONIC_ADVANCED_RELEASE}/airsonic.war" && \
3737 printf "Linuxserver.io version: ${VERSION}\n Build-date: ${BUILD_DATE}" > /build_version && \
3838 echo "**** cleanup ****" && \
3939 rm -rf \
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ RUN \
2626 vorbis-tools && \
2727 echo "**** install airsonic advanced ****" && \
2828 if [ -z ${AIRSONIC_ADVANCED_RELEASE+x} ]; then \
29- AIRSONIC_ADVANCED_RELEASE=$(curl -sX GET "https://api.github.com/repos/airsonic-advanced /airsonic-advanced/releases" \
29+ AIRSONIC_ADVANCED_RELEASE=$(curl -sX GET "https://api.github.com/repos/kagemomiji /airsonic-advanced/releases" \
3030 | awk '/tag_name/{print $4;exit}' FS='[""]'); \
3131 fi && \
3232 mkdir -p \
3333 ${AIRSONIC_ADVANCED_HOME} && \
3434 curl -o \
3535 ${AIRSONIC_ADVANCED_HOME}/airsonic.war -L \
36- "https://github.com/airsonic-advanced /airsonic-advanced/releases/download/${AIRSONIC_ADVANCED_RELEASE}/airsonic.war" && \
36+ "https://github.com/kagemomiji /airsonic-advanced/releases/download/${AIRSONIC_ADVANCED_RELEASE}/airsonic.war" && \
3737 printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3838 echo "**** cleanup ****" && \
3939 rm -rf \
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ pipeline {
1919 DOCKERHUB_TOKEN = credentials(' docker-hub-ci-pat' )
2020 QUAYIO_API_TOKEN = credentials(' quayio-repo-api-token' )
2121 GIT_SIGNING_KEY = credentials(' 484fbca6-9a4f-455e-b9e3-97ac98785f5f' )
22- EXT_GIT_BRANCH = ' master '
23- EXT_USER = ' airsonic-advanced '
22+ EXT_GIT_BRANCH = ' main '
23+ EXT_USER = ' kagemomiji '
2424 EXT_REPO = ' airsonic-advanced'
2525 BUILD_VERSION_ARG = ' AIRSONIC_ADVANCED_RELEASE'
2626 LS_USER = ' linuxserver'
@@ -985,7 +985,7 @@ pipeline {
985985 "target_commitish": "master",\
986986 "name": "'${META_TAG}'",\
987987 "body": "**CI Report:**\\ n\\ n'${CI_URL:-N/A}'\\ n\\ n**LinuxServer Changes:**\\ n\\ n'${LS_RELEASE_NOTES}'\\ n\\ n**Remote Changes:**\\ n\\ n' > start
988- printf '","draft": false,"prerelease": true }' >> releasebody.json
988+ printf '","draft": false,"prerelease": false }' >> releasebody.json
989989 paste -d'\\ 0' start releasebody.json > releasebody.json.done
990990 curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
991991 }
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
317317
318318# # Versions
319319
320- * ** 21.12.24:** - Rebase to Alpine 3.21.
320+ * ** 21.12.24:** - Rebase to Alpine 3.21. Switch upstream to track https://github.com/kagemomiji/airsonic-advanced.
321321* ** 24.05.24:** - Rebase to Alpine 3.20.
322322* ** 20.03.24:** - Rebase to Alpine 3.19.
323323* ** 30.05.23:** - Rebase to Alpine 3.18.
Original file line number Diff line number Diff line change 33# jenkins variables
44project_name : docker-airsonic-advanced
55external_type : github_devel
6- release_type : prerelease
6+ release_type : stable
77release_tag : latest
88ls_branch : master
99repo_vars :
10- - EXT_GIT_BRANCH = 'master '
11- - EXT_USER = 'airsonic-advanced '
10+ - EXT_GIT_BRANCH = 'main '
11+ - EXT_USER = 'kagemomiji '
1212 - EXT_REPO = 'airsonic-advanced'
1313 - BUILD_VERSION_ARG = 'AIRSONIC_ADVANCED_RELEASE'
1414 - LS_USER = 'linuxserver'
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ init_diagram: |
9494 "airsonic-advanced:latest" <- Base Images
9595# changelog
9696changelogs :
97- - {date: "21.12.24:", desc: "Rebase to Alpine 3.21."}
97+ - {date: "21.12.24:", desc: "Rebase to Alpine 3.21. Switch upstream to track https://github.com/kagemomiji/airsonic-advanced. "}
9898 - {date: "24.05.24:", desc: "Rebase to Alpine 3.20."}
9999 - {date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
100100 - {date: "30.05.23:", desc: "Rebase to Alpine 3.18."}
You can’t perform that action at this time.
0 commit comments